結果
問題 | No.657 テトラナッチ数列 Easy |
ユーザー | zbxah |
提出日時 | 2018-03-05 11:11:28 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 311 bytes |
コンパイル時間 | 169 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 16,128 KB |
最終ジャッジ日時 | 2024-07-19 08:27:33 |
合計ジャッジ時間 | 5,142 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
16,128 KB |
testcase_01 | AC | 31 ms
10,624 KB |
testcase_02 | AC | 30 ms
10,624 KB |
testcase_03 | AC | 28 ms
10,368 KB |
testcase_04 | AC | 156 ms
10,624 KB |
testcase_05 | AC | 71 ms
10,496 KB |
testcase_06 | AC | 25 ms
10,496 KB |
testcase_07 | AC | 26 ms
10,496 KB |
testcase_08 | AC | 175 ms
10,624 KB |
testcase_09 | AC | 696 ms
10,624 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
def t(n: int) -> int: if n in [1, 2, 3]: return 0 elif n == 4: return 1 a, b, c, d = 1, 0, 0, 0 # n-1, ..., n-4 for _ in range(5, n + 1): a, b, c, d = (a + b + c + d) % 17, a, b, c return a Q = int(input()) for _ in range(Q): nq = int(input()) print(t(nq))