結果

問題 No.7 プライムナンバーゲーム
ユーザー るこーそーるこーそー
提出日時 2024-09-24 15:44:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 175 ms / 5,000 ms
コード長 469 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 66,716 KB
最終ジャッジ日時 2024-09-24 15:44:42
合計ジャッジ時間 2,503 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,756 KB
testcase_01 AC 36 ms
53,312 KB
testcase_02 AC 175 ms
66,052 KB
testcase_03 AC 60 ms
63,308 KB
testcase_04 AC 51 ms
62,856 KB
testcase_05 AC 51 ms
63,540 KB
testcase_06 AC 87 ms
65,904 KB
testcase_07 AC 74 ms
65,368 KB
testcase_08 AC 62 ms
65,068 KB
testcase_09 AC 102 ms
65,832 KB
testcase_10 AC 37 ms
53,144 KB
testcase_11 AC 76 ms
64,556 KB
testcase_12 AC 138 ms
66,012 KB
testcase_13 AC 155 ms
66,336 KB
testcase_14 AC 173 ms
66,264 KB
testcase_15 AC 166 ms
65,944 KB
testcase_16 AC 157 ms
66,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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=[False]*(n+1)
dp[0]=True;dp[1]=True
for i in range(n+1):
    for p in P:
        if i-p>=0:
            dp[i]|=not dp[i-p]

print('Win' if dp[n] else 'Lose')
0