結果

問題 No.7 プライムナンバーゲーム
ユーザー _kyou_kyou
提出日時 2024-08-05 00:03:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 537 ms / 5,000 ms
コード長 482 bytes
コンパイル時間 481 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-08-05 00:03:16
合計ジャッジ時間 5,438 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 537 ms
10,752 KB
testcase_03 AC 60 ms
10,752 KB
testcase_04 AC 38 ms
10,624 KB
testcase_05 AC 37 ms
10,752 KB
testcase_06 AC 171 ms
10,752 KB
testcase_07 AC 125 ms
10,752 KB
testcase_08 AC 74 ms
10,752 KB
testcase_09 AC 247 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 120 ms
10,752 KB
testcase_12 AC 361 ms
10,752 KB
testcase_13 AC 385 ms
10,752 KB
testcase_14 AC 503 ms
10,752 KB
testcase_15 AC 453 ms
10,752 KB
testcase_16 AC 437 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

primes = []
for i in range(2, N+1):
    flg = True
    for j in primes:
        if i % j == 0:
            flg = False
            break
    if flg:
        primes.append(i)

dp = [False] * (N + 1)
dp[0] = dp[1] = True # 初期値(先攻が負けることはない)
for i in range(2, N + 1):
    for prime in primes:
        if prime > i:
            break
        if not dp[i - prime]:
            dp[i] = True
            break

print("Win" if dp[N] else "Lose")
0