結果

問題 No.657 テトラナッチ数列 Easy
ユーザー titiatitia
提出日時 2024-07-06 02:51:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 432 ms / 2,000 ms
コード長 153 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-07-06 02:52:07
合計ジャッジ時間 7,596 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 339 ms
18,432 KB
testcase_01 AC 365 ms
18,432 KB
testcase_02 AC 343 ms
18,560 KB
testcase_03 AC 339 ms
18,560 KB
testcase_04 AC 352 ms
18,432 KB
testcase_05 AC 383 ms
18,432 KB
testcase_06 AC 343 ms
18,304 KB
testcase_07 AC 346 ms
18,432 KB
testcase_08 AC 376 ms
18,560 KB
testcase_09 AC 390 ms
18,304 KB
testcase_10 AC 386 ms
18,432 KB
testcase_11 AC 432 ms
18,432 KB
testcase_12 AC 397 ms
18,560 KB
testcase_13 AC 405 ms
18,560 KB
testcase_14 AC 410 ms
18,560 KB
testcase_15 AC 402 ms
18,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=[0,0,0,0,1]
for i in range(10**6):
    T.append((T[-1]+T[-2]+T[-3]+T[-4])%17)

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