250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- D4
- 원서읽기
- 코테
- readingbook
- PyQt
- 코테 준비
- sw expert
- the midnight library
- dfs
- 알고리즘 문제
- BFS
- swexpertacademy
- 코테 대비
- English
- englishbook
- 백준
- 알고리즘
- 쉬운 알고리즘 문제
- STUDYENGLISH
- sw expert academy
- 원서읽자
- nightroutine
- MySQL
- SQL
- 삼성
- 코딩테스트
- 원서
- 완전탐색
- 직무면접
- 프로그래머스
Archives
- Today
- Total
시나브로
[D3] 8016. 홀수 피라미드 본문
728x90
#include <stdio.h>
int main() {
int test_case = 0;
scanf("%d", &test_case);
for (int q = 0; q < test_case; q++) {
long long layer = 0;
scanf("%d", &layer);
long long box = 2 * (layer - 1)*(layer - 1) + 1;
printf("#%lld %lld %lld\n",q+1 ,box, box + 4*(layer - 1));
}
return 0;
}
728x90
'알고리즘 > SW Expert Academy' 카테고리의 다른 글
[D5] 8191. 만화책 정렬하기 (0) | 2019.10.06 |
---|---|
[D4] 7965. 퀴즈 (0) | 2019.10.06 |
[D3] 7985. Rooted Binary Tree 재구성 (0) | 2019.10.06 |
[D3] 8104. 조 만들기 (0) | 2019.10.06 |
[D5] 7730. 나무 깎는 홍준 (0) | 2019.10.06 |
Comments