반응형
https://www.acmicpc.net/problem/11726
import Foundation
let n = Int(readLine()!)!
var list = Array.init(repeating: 1, count: n+1)
if n > 1 {
for i in 2...n {
list[i] = (list[i-1]+list[i-2])%10007
}
}
print(list[n])
반응형
'# 02 > Swift - CTP' 카테고리의 다른 글
[Swift] 백준! 1012번 - 유기농 배추 (0) | 2023.01.29 |
---|---|
[Swift] 백준! 2579번 - 계단 오르기 (0) | 2023.01.29 |
[Swift] 백준! 11047번 - 동전 0 (0) | 2023.01.29 |
[Swift] 백준! 2667번 - 단지번호붙이기 (0) | 2023.01.20 |
[Swift] 백준! 2606번 - 바이러스 (0) | 2023.01.20 |