結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | るこーそー |
提出日時 | 2024-09-24 15:55:40 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 606 bytes |
コンパイル時間 | 466 ms |
コンパイル使用メモリ | 82,404 KB |
実行使用メモリ | 80,820 KB |
最終ジャッジ日時 | 2024-09-24 15:55:42 |
合計ジャッジ時間 | 2,800 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,480 KB |
testcase_01 | AC | 37 ms
53,476 KB |
testcase_02 | RE | - |
testcase_03 | AC | 72 ms
69,764 KB |
testcase_04 | AC | 58 ms
65,644 KB |
testcase_05 | AC | 58 ms
65,212 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 76 ms
71,048 KB |
testcase_09 | RE | - |
testcase_10 | AC | 37 ms
52,740 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
ソースコード
def Prime(n): prime=[True]*(n+1) prime[0],prime[1]=False,False for p in range(2,n+1): if not prime[p]:continue for np in range(2*p,n+1,p): prime[np]=False prime_list=[] for p in range(n+1): if prime[p]: prime_list.append(p) return prime_list n=int(input()) P=Prime(n) dp=[-1]*(n+1) def grundy(x): if dp[x]!=-1:return dp[x] if x==2 or x==3:return 0 s=set() for p in P: if x-p>=2: s.add(grundy(x-p)) res=0 while res in s: res+=1 dp[x]=res return res print('Win' if grundy(n) else 'Lose')