[JAVA] SWEA 8016 - 홀수 피라미드

hyng·2022년 4월 7일
0

SWEA

목록 보기
67/78

import java.util.*;
class Solution
{

	public static void main(String args[]) throws Exception
	{
        Scanner sc = new Scanner(System.in);
        StringBuffer sb = new StringBuffer();

        int T = sc.nextInt();
        for(int tc=1; tc<=T; tc++){
            sb.append("#").append(tc).append(" ");

            long N = sc.nextInt();

            sb.append((N-1)*(N-1)*2+1).append(" ");
            sb.append(N*N*2-1).append("\n");
        }

        System.out.println(sb);
    }
}
profile
공부하고 알게 된 내용을 기록하는 블로그

0개의 댓글