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 | 31 |
Tags
- 삼성
- nightroutine
- 백준
- sw expert academy
- 코테 준비
- readingbook
- 코테
- 알고리즘
- 프로그래머스
- 쉬운 알고리즘 문제
- the midnight library
- 코딩테스트
- BFS
- MySQL
- dfs
- English
- sw expert
- 원서읽기
- swexpertacademy
- 직무면접
- SQL
- STUDYENGLISH
- englishbook
- 코테 대비
- PyQt
- 원서읽자
- 원서
- 완전탐색
- 알고리즘 문제
- D4
Archives
- Today
- Total
목록시뮬레이션 (1)
시나브로
1551. 수열의 변화
쉬운 문제를 자꾸 틀렸습니다가 떠서 놀랬는데 데이터를 다 못 받아서 그랫던 것이다.... 시뮬레이션이라고 하길래 간단하게 시뮬 구현해서 풀었다. #include int main(void) { int n, k; scanf("%d %d", &n, &k); int list[30] = { 0 }; char buffer = 0; for (int i = 0; i 0) { for (int i = 0; i < point-1; i++) { list[i] = list[i + 1] - list[i]; } k--; point--; } for (int i = 0; i < poi..
알고리즘/백준
2020. 1. 13. 19:22