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
- BFS
- readingbook
- MySQL
- the midnight library
- swexpertacademy
- 알고리즘
- sw expert
- 쉬운 알고리즘 문제
- dfs
- 코테
- D4
- 삼성
- 원서읽기
- 코딩테스트
- 직무면접
- 알고리즘 문제
- PyQt
- 백준
- englishbook
- 원서
- sw expert academy
- 프로그래머스
- 완전탐색
- 코테 대비
- SQL
- 코테 준비
- 원서읽자
- STUDYENGLISH
- English
- nightroutine
Archives
- Today
- Total
시나브로
[D3] 8104. 조 만들기 본문
728x90
#include <stdio.h>
int main() {
int test_case = 0;
scanf("%d", &test_case);
for (int q = 0; q < test_case; q++) {
int N = 0;
int K = 0;
scanf("%d %d", &N, &K);
printf("#%d ",q+1);
if (N % 2 != 0) {
int box = (N+1)*K;
int box1 = (N + 1)*K;
box = (box*(box + 1)) / (2 * K);
for (int i = 0; i < K; i++) {
printf("%d ", box-box1);
box1--;
}
}
else {
int box = N*K;
box = (box*(box + 1)) / (2 * K);
for (int i = 0; i < K; i++) {
printf("%d ", box);
}
}
printf("\n");
}
return 0;
}
728x90
'알고리즘 > SW Expert Academy' 카테고리의 다른 글
[D3] 8016. 홀수 피라미드 (0) | 2019.10.06 |
---|---|
[D3] 7985. Rooted Binary Tree 재구성 (0) | 2019.10.06 |
[D5] 7730. 나무 깎는 홍준 (0) | 2019.10.06 |
[D4] 7829. 보물왕 태혁 (0) | 2019.10.06 |
[D5] 7812. 옥희의 OK! 부동산 (0) | 2019.10.06 |
Comments