結果

問題 No.657 テトラナッチ数列 Easy
ユーザー akitsugu777akitsugu777
提出日時 2019-07-17 10:53:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 464 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-05-10 01:07:08
合計ジャッジ時間 8,515 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 390 ms
18,432 KB
testcase_01 AC 382 ms
18,560 KB
testcase_02 AC 398 ms
18,560 KB
testcase_03 AC 411 ms
18,560 KB
testcase_04 AC 382 ms
18,688 KB
testcase_05 AC 440 ms
18,688 KB
testcase_06 AC 394 ms
18,304 KB
testcase_07 AC 413 ms
18,432 KB
testcase_08 AC 420 ms
18,560 KB
testcase_09 AC 451 ms
18,688 KB
testcase_10 AC 443 ms
18,560 KB
testcase_11 AC 444 ms
18,560 KB
testcase_12 AC 450 ms
18,560 KB
testcase_13 AC 464 ms
18,688 KB
testcase_14 AC 454 ms
18,688 KB
testcase_15 AC 457 ms
18,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = [0, 0, 0, 1]
for i in range(1000000):
    t.append((t[i] + t[i+1] + t[i+2] + t[i+3]) % 17)

q = int(input())

for i in range(q):
    print(t[int(input())-1])
0