結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | gorugo30 |
提出日時 | 2021-02-25 21:30:34 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 494 bytes |
コンパイル時間 | 321 ms |
コンパイル使用メモリ | 82,608 KB |
実行使用メモリ | 81,240 KB |
最終ジャッジ日時 | 2024-10-01 12:57:54 |
合計ジャッジ時間 | 2,607 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
66,832 KB |
testcase_01 | AC | 53 ms
66,444 KB |
testcase_02 | RE | - |
testcase_03 | AC | 65 ms
71,724 KB |
testcase_04 | AC | 62 ms
69,704 KB |
testcase_05 | AC | 61 ms
69,900 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 64 ms
72,384 KB |
testcase_09 | RE | - |
testcase_10 | AC | 54 ms
65,620 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
ソースコード
def isp(x): for i in range(2, int(x ** 0.5) + 1): if x % i == 0: return False return True P = [] for i in range(2, 10001): if isp(i): P.append(i) def canwin(x): if x <= 1: return 1 if dp[x] != -1: return dp[x] ans = 0 for p in P: if p > x: break ans |= canwin(x - p) ^ 1 dp[x] = ans return ans N = int(input()) dp = [-1] * (N + 1) if canwin(N): print("Win") else: print("Lose")