結果

問題 No.657 テトラナッチ数列 Easy
ユーザー 👑 KazunKazun
提出日時 2020-06-10 18:36:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 163 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 84,384 KB
最終ジャッジ日時 2024-06-23 11:43:27
合計ジャッジ時間 2,334 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
66,352 KB
testcase_01 AC 50 ms
66,900 KB
testcase_02 AC 50 ms
65,920 KB
testcase_03 AC 50 ms
66,620 KB
testcase_04 AC 50 ms
67,504 KB
testcase_05 AC 103 ms
84,384 KB
testcase_06 AC 51 ms
66,636 KB
testcase_07 AC 50 ms
66,164 KB
testcase_08 AC 51 ms
66,176 KB
testcase_09 AC 103 ms
83,856 KB
testcase_10 AC 104 ms
84,372 KB
testcase_11 AC 104 ms
84,312 KB
testcase_12 AC 103 ms
84,052 KB
testcase_13 AC 106 ms
84,116 KB
testcase_14 AC 106 ms
84,064 KB
testcase_15 AC 103 ms
83,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=[0]*(10**6+1)
T[4]=1

for t in range(5,10**6+1):
    T[t]=(T[t-1]+T[t-2]+T[t-3]+T[t-4])%17

Q=int(input())
for _ in range(Q):
    n=int(input())
    print(T[n])
0