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
- 사칙연산
- SuNiNaTas
- Web
- C
- cryptography
- N0Named
- 수학
- Network
- MySQL
- 문자열
- Text
- 그리디 알고리즘
- Digital Forensics
- writeup
- Python
- php
- CTF
- 구현
- 인코그니토
- HackCTF
- Incognito
- 백준
- 정렬
- Web Hacking
- Database
- Forensics
- misc
- wargame
- xcz.kr
- 써니나타스
Archives
- Today
- Total
보안을 그리다, 훈이
(추가예정) [Baekjoon/Python3/C] 11726번 2×n 타일링 본문
Programming/Python & Data Structures
(추가예정) [Baekjoon/Python3/C] 11726번 2×n 타일링
HooNeee 2020. 12. 7. 00:47[Baekjoon/Python3] 11726번 2×n 타일링
[Python3]
-
[C]
#include <stdio.h>
int main()
{
int n;
int i;
int fb[1001];
scanf("%d", &n);
fb[0] = 1;
fb[1] = 1;
for (i = 2;i <= n;i++)
{
fb[i] = fb[i - 1] + fb[i - 2];
fb[i] = fb[i] % 10007;
}
printf("%d\n", fb[n]);
return 0;
}
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 11728번 배열 합치기 (0) | 2020.12.07 |
---|---|
[Baekjoon/Python3] 11727번 2×n 타일링 2 (0) | 2020.12.07 |
[Baekjoon/Python3] 11721번 열 개씩 끊어 출력하기 (0) | 2020.12.07 |
[Baekjoon/Python3] 11720번 숫자의 합 (0) | 2020.12.07 |
[Baekjoon/Python3] 11719번 그대로 출력하기 2 (0) | 2020.12.07 |
Comments