結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | phantomile |
提出日時 | 2015-12-22 03:47:45 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 812 bytes |
コンパイル時間 | 83 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 22,912 KB |
最終ジャッジ日時 | 2024-09-18 18:31:36 |
合計ジャッジ時間 | 4,002 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
10,880 KB |
testcase_01 | AC | 25 ms
10,880 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 27 ms
10,752 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
ソースコード
""" Yukicoder No.7 author: yamaton date: 2015-12-18 """ import functools import math import sys def sieve(n): remaining = [True] * (n + 1) max_p = int(math.sqrt(n)) for p in range(2, max_p + 1): if not remaining[p]: continue for q in range(p * p, n + 1, p): remaining[q] = False return [p for p in range(2, n + 1) if remaining[p]] @functools.lru_cache(maxsize=8096) def solve(n): if n == 0 or n == 1: return True assert n >= 2 return any(not solve(n-i) for i in sieve(n)) def tf_to_wl(tf): return 'Win' if tf else "Lose" def pp(*args, **kwargs): return print(*args, file=sys.stderr, **kwargs) def main(): n = int(input()) result = tf_to_wl(solve(n)) print(result) if __name__ == '__main__': main()