結果

問題 No.657 テトラナッチ数列 Easy
ユーザー fumofumofunifumofumofuni
提出日時 2023-06-21 01:06:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 84,224 KB
最終ジャッジ日時 2024-06-28 11:49:41
合計ジャッジ時間 2,493 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
66,048 KB
testcase_01 AC 54 ms
66,272 KB
testcase_02 AC 55 ms
65,920 KB
testcase_03 AC 55 ms
65,920 KB
testcase_04 AC 54 ms
65,920 KB
testcase_05 AC 114 ms
83,840 KB
testcase_06 AC 60 ms
66,048 KB
testcase_07 AC 54 ms
66,048 KB
testcase_08 AC 53 ms
66,304 KB
testcase_09 AC 114 ms
84,000 KB
testcase_10 AC 116 ms
83,676 KB
testcase_11 AC 125 ms
84,224 KB
testcase_12 AC 122 ms
83,716 KB
testcase_13 AC 119 ms
83,840 KB
testcase_14 AC 118 ms
83,996 KB
testcase_15 AC 126 ms
84,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=1000100
A=[0]*N
A[3]=1
for i in range(4,N):
    A[i]=A[i-1]+A[i-2]+A[i-3]+A[i-4]
    A[i]%=17

Q=int(input())
for _ in range(Q):
    p=int(input())
    p-=1
    print(A[p])



0