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
- dfs
- 프로그래머스
- MySQL
- 코테 대비
- nightroutine
- 원서읽자
- 원서
- D4
- englishbook
- SQL
- the midnight library
- 알고리즘
- STUDYENGLISH
- sw expert academy
- 코테 준비
- swexpertacademy
- sw expert
- 쉬운 알고리즘 문제
- 알고리즘 문제
- 직무면접
- 백준
- 원서읽기
- 코테
- 삼성
- English
- readingbook
- 완전탐색
- PyQt
- BFS
- 코딩테스트
Archives
- Today
- Total
목록조만들기 (1)
시나브로
[D3] 8104. 조 만들기
#include 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..
알고리즘/SW Expert Academy
2019. 10. 6. 11:03