結果

問題 No.314 ケンケンパ
ユーザー daleksprinterdaleksprinter
提出日時 2018-08-10 03:03:14
言語 Python2
(2.7.18)
結果
AC  
実行時間 354 ms / 1,000 ms
コード長 171 bytes
コンパイル時間 555 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 69,960 KB
最終ジャッジ日時 2024-09-23 05:20:27
合計ジャッジ時間 8,595 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 346 ms
69,876 KB
testcase_01 AC 347 ms
69,844 KB
testcase_02 AC 346 ms
69,936 KB
testcase_03 AC 345 ms
69,864 KB
testcase_04 AC 345 ms
69,928 KB
testcase_05 AC 344 ms
69,884 KB
testcase_06 AC 346 ms
69,876 KB
testcase_07 AC 347 ms
69,732 KB
testcase_08 AC 347 ms
69,956 KB
testcase_09 AC 346 ms
69,880 KB
testcase_10 AC 349 ms
69,940 KB
testcase_11 AC 348 ms
69,880 KB
testcase_12 AC 354 ms
69,736 KB
testcase_13 AC 349 ms
69,960 KB
testcase_14 AC 351 ms
69,908 KB
testcase_15 AC 351 ms
69,732 KB
testcase_16 AC 346 ms
69,868 KB
testcase_17 AC 348 ms
69,916 KB
testcase_18 AC 349 ms
69,868 KB
testcase_19 AC 347 ms
69,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

arr = []

arr.append(0)
arr.append(1)
arr.append(2)
arr.append(2)

for i in range(4,10**6+1):
	arr.append((arr[i-2] + arr[i-3])%(10**9+7))

print arr[n] 
0