結果
問題 | No.657 テトラナッチ数列 Easy |
ユーザー | kwnwsdnc |
提出日時 | 2018-03-06 16:32:36 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 273 bytes |
コンパイル時間 | 85 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 818,048 KB |
最終ジャッジ日時 | 2024-09-19 08:50:09 |
合計ジャッジ時間 | 2,304 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
10,496 KB |
testcase_01 | AC | 29 ms
10,624 KB |
testcase_02 | AC | 28 ms
10,624 KB |
testcase_03 | AC | 27 ms
10,624 KB |
testcase_04 | MLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
Q=int(input()) N=[] for _ in range (Q): N.append(int(input())) T=[0,0,0,0,1] i=1 while i<max(N): if i<=4: T.append((T[i]+T[i+1]+T[i+2]+T[i+3])%17) else: T.append((2*T[i+3]-T[i-1])) i+=1 j=0 while j<Q: print(T[N[j]]) j+=1