結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 404 ms
18,688 KB
testcase_01 AC 439 ms
18,688 KB
testcase_02 AC 396 ms
18,688 KB
testcase_03 AC 404 ms
18,560 KB
testcase_04 AC 419 ms
18,432 KB
testcase_05 AC 447 ms
18,688 KB
testcase_06 AC 405 ms
18,560 KB
testcase_07 AC 396 ms
18,432 KB
testcase_08 AC 409 ms
18,688 KB
testcase_09 AC 457 ms
18,432 KB
testcase_10 AC 444 ms
18,688 KB
testcase_11 AC 444 ms
18,560 KB
testcase_12 AC 445 ms
18,688 KB
testcase_13 AC 459 ms
18,688 KB
testcase_14 AC 458 ms
18,560 KB
testcase_15 AC 458 ms
18,688 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