結果
問題 | No.657 テトラナッチ数列 Easy |
ユーザー | StarMatyan |
提出日時 | 2018-07-25 20:35:33 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 478 bytes |
コンパイル時間 | 94 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 17,568 KB |
最終ジャッジ日時 | 2024-06-27 01:20:23 |
合計ジャッジ時間 | 7,154 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
17,568 KB |
testcase_01 | AC | 30 ms
10,624 KB |
testcase_02 | AC | 37 ms
10,496 KB |
testcase_03 | AC | 34 ms
10,496 KB |
testcase_04 | AC | 419 ms
10,496 KB |
testcase_05 | AC | 87 ms
10,624 KB |
testcase_06 | AC | 30 ms
10,624 KB |
testcase_07 | AC | 29 ms
10,624 KB |
testcase_08 | AC | 512 ms
10,624 KB |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
firstdata = int(input()); result = 0; siteik = 0; for inp in range(0,firstdata): first = 0; second = 0; third = 0; four = 1; siteik = int(input()); if siteik < 4: print(0); elif siteik == 4: print(1); else: for inp2 in range(5,siteik+1): result = (first+second+third+four)%17; first = second; second = third; third = four; four = result; print(result);