結果

問題 No.7 プライムナンバーゲーム
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-20 14:17:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 5,000 ms
コード長 339 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 76,292 KB
最終ジャッジ日時 2024-10-20 14:17:49
合計ジャッジ時間 3,092 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,412 KB
testcase_01 AC 38 ms
52,532 KB
testcase_02 AC 149 ms
76,172 KB
testcase_03 AC 61 ms
71,080 KB
testcase_04 AC 53 ms
66,284 KB
testcase_05 AC 53 ms
64,280 KB
testcase_06 AC 92 ms
76,240 KB
testcase_07 AC 80 ms
75,932 KB
testcase_08 AC 66 ms
73,096 KB
testcase_09 AC 106 ms
76,052 KB
testcase_10 AC 39 ms
52,508 KB
testcase_11 AC 79 ms
76,072 KB
testcase_12 AC 128 ms
75,948 KB
testcase_13 AC 129 ms
76,264 KB
testcase_14 AC 151 ms
76,292 KB
testcase_15 AC 145 ms
76,256 KB
testcase_16 AC 139 ms
76,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

l=N+1
P=[1]*l
for i in range(2,l):
  if P[i]:
    for j in range(i+i,l,i):
      P[j]=0
P=[i for i in range(2,l) if P[i]]

q=[0]*(N+1)
for i in range(4,N+1):
  g=[0]*(len(P)+1)
  for p in P:
    if 2<=i-p:
      g[q[i-p]]=1
  for j in range(len(P)+1):
    if g[j]==0:
      q[i]=j
      break

print(["Lose","Win"][q[N]>0])
0