結果

問題 No.7 プライムナンバーゲーム
ユーザー なえしらなえしら
提出日時 2023-11-22 12:59:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 342 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 63,232 KB
最終ジャッジ日時 2024-09-26 07:29:09
合計ジャッジ時間 1,842 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 66 ms
62,592 KB
testcase_03 WA -
testcase_04 AC 47 ms
59,648 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 52 ms
61,440 KB
testcase_08 AC 53 ms
61,056 KB
testcase_09 AC 57 ms
61,952 KB
testcase_10 WA -
testcase_11 AC 53 ms
61,312 KB
testcase_12 AC 53 ms
62,592 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 53 ms
62,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

primes = set(range(2, N+1))
for i in range(2, N+1):
  if i not in primes: continue
  for j in range(2*i, N+1):
    primes.discard(j)
primes = sorted(primes)

dp = ["Win"]*2 + ["Lose"]*(N-1)
for i in range(2, N+1):
  for d in primes:
    if i < d: break
    if dp[i-d] == "Lose":
      dp[i] = "Win"
      break

print(dp[N])
0