일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- readingbook
- 코테 준비
- 원서
- sw expert academy
- 직무면접
- 완전탐색
- the midnight library
- swexpertacademy
- 알고리즘 문제
- English
- STUDYENGLISH
- 백준
- nightroutine
- sw expert
- 코테
- D4
- 원서읽자
- 코테 대비
- BFS
- 알고리즘
- 쉬운 알고리즘 문제
- 코딩테스트
- MySQL
- englishbook
- PyQt
- 삼성
- SQL
- 원서읽기
- dfs
- 프로그래머스
- Today
- Total
목록분류 전체보기 (172)
시나브로
#include int main() { int test_case = 0; scanf("%d", &test_case); char buffer = 0; scanf("%c", &buffer); for (int q = 0; q < test_case; q++) { int present_hours = 0; int present_min = 0; int present_second = 0; int future_hours = 0; int future_min = 0; int future_second = 0; int remain_hours = 0; int remain_second = 0; int remain_min = 0; scanf("%d:%d:%d",&present_hours,&present_min,&present_sec..
#include int main() { int test_case = 0; scanf("%d", &test_case); char buffer = 0; scanf("%c", &buffer); for (int q = 0; q < test_case; q++) { int test_amount = 0; scanf("%d", &test_amount); int box = 0; int m[200002] = { 0 }; int memory_point = 0; for (int i = 0; i < test_amount; i++) { scanf("%d", &box); if (m[box-1] == 1) { m[box] = 1; } else { m[box] = 1; memory_point++; } } printf("#%d %d\n..
#include long long sequal[1000002][2] = { 0 }; int main() { int test_case = 0; scanf("%d", &test_case); char buffer = 0; scanf("%c", &buffer); long long last_point = 0; sequal[0][0] = 0; sequal[0][1] = 0; for (int q = 0; q < test_case; q++) { long long number = 0; scanf("%d", &number); for (int i = last_point+1; i
#include 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; }