結果

問題 No.7 プライムナンバーゲーム
ユーザー なえしらなえしら
提出日時 2023-11-22 13:54:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 5,000 ms
コード長 345 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 65,536 KB
最終ジャッジ日時 2024-09-26 07:30:34
合計ジャッジ時間 1,898 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 62 ms
65,408 KB
testcase_03 AC 47 ms
62,592 KB
testcase_04 AC 45 ms
60,800 KB
testcase_05 AC 45 ms
60,416 KB
testcase_06 AC 57 ms
64,512 KB
testcase_07 AC 53 ms
63,744 KB
testcase_08 AC 52 ms
62,336 KB
testcase_09 AC 59 ms
65,280 KB
testcase_10 AC 37 ms
51,712 KB
testcase_11 AC 52 ms
63,744 KB
testcase_12 AC 57 ms
64,896 KB
testcase_13 AC 57 ms
65,116 KB
testcase_14 AC 61 ms
65,152 KB
testcase_15 AC 61 ms
65,536 KB
testcase_16 AC 59 ms
65,024 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, i):
    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