結果
問題 | No.658 テトラナッチ数列 Hard |
ユーザー | kichirb3 |
提出日時 | 2018-03-06 18:22:52 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,001 bytes |
コンパイル時間 | 227 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,776 KB |
最終ジャッジ日時 | 2024-09-19 19:34:51 |
合計ジャッジ時間 | 1,137 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,624 KB |
testcase_01 | AC | 29 ms
10,752 KB |
testcase_02 | AC | 39 ms
11,264 KB |
testcase_03 | AC | 42 ms
11,264 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
# -*- coding: utf-8 -*- """ No.658 テトラナッチ数列 Hard https://yukicoder.me/problems/no/658 """ import sys from sys import stdin input = stdin.readline def solve(limit): loop = 0 loop_check= dict() res = [None, 0, 0, 0, 1] for i in range(5, limit+1): h = '{:02d}{:02d}{:02d}{:02d}'.format(res[-4], res[-3], res[-2], res[-1]) if h in loop_check: loop = loop_check[h] break else: loop_check[h] = i tmp = sum(res[-4:]) % 17 res.append(tmp) return res, loop def main(args): Q = int(input()) queries = [int(input()) for _ in range(Q)] tetra, looped = solve(max(queries)) if looped != 0: loop = len(tetra) - looped for q in queries: if q >= loop: print(tetra[q % loop]) else: print(tetra[q]) else: for q in queries: print(tetra[q]) if __name__ == '__main__': main(sys.argv[1:])