結果
問題 | No.2551 2, 3, 5, 7 Game |
ユーザー | rlangevin |
提出日時 | 2023-12-15 12:34:33 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 490 bytes |
コンパイル時間 | 336 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 22,288 KB |
最終ジャッジ日時 | 2024-09-27 06:15:51 |
合計ジャッジ時間 | 11,925 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,293 ms
22,288 KB |
testcase_01 | AC | 1,460 ms
15,496 KB |
testcase_02 | AC | 1,275 ms
15,348 KB |
testcase_03 | AC | 1,233 ms
15,332 KB |
testcase_04 | AC | 1,315 ms
15,352 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
import sys input = sys.stdin.readline sys.setrecursionlimit(10**7) from functools import lru_cache T = int(input()) for _ in range(T): N = int(input()) @lru_cache(maxsize=None) def f(x): v = 0 if 2 * x < N: v |= 1 - f(2 * x) if 3 * x < N: v |= 1 - f(3 * x) if 5 * x < N: v |= 1 - f(5 * x) if 7 * x < N: v |= 1 - f(7 * x) return v print("sepa") if f(1) else print("ryota")