結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | cleantted |
提出日時 | 2016-10-09 01:18:21 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 632 bytes |
コンパイル時間 | 163 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-11-21 20:39:34 |
合計ジャッジ時間 | 7,051 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | AC | 62 ms
10,752 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
ソースコード
N = int(input()) memo = [-1] * (N+1) #-1 -> (not yet), 0 -> win, 1 -> Lose prime = [] memo[0] = 0 #0 -> win memo[1] = 0 #0 -> win #素数列を作る(=prime) for n in range(2,N+1): flag = True for m in range(2, n): if n%m == 0: flag = False break if flag: prime.append(n) def res(i): if memo[i] != -1: return(memo[i]) #計算済なら、それを返す flag = 1 for p in prime: if p < i: flag = flag * (1 - res(i-p)) memo[i] = flag #計算結果をmemoに入れる return(flag) if res(N) == 0: print("WIn") else: print("Lose")