結果

問題 No.7 プライムナンバーゲーム
ユーザー taisuketaisuke
提出日時 2023-02-20 11:38:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 562 ms / 5,000 ms
コード長 579 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-21 05:23:44
合計ジャッジ時間 4,803 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 562 ms
10,880 KB
testcase_03 AC 63 ms
10,624 KB
testcase_04 AC 39 ms
10,752 KB
testcase_05 AC 39 ms
10,752 KB
testcase_06 AC 176 ms
10,624 KB
testcase_07 AC 128 ms
10,752 KB
testcase_08 AC 73 ms
10,624 KB
testcase_09 AC 249 ms
10,624 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 137 ms
10,752 KB
testcase_12 AC 388 ms
10,752 KB
testcase_13 AC 421 ms
10,880 KB
testcase_14 AC 519 ms
10,880 KB
testcase_15 AC 522 ms
10,880 KB
testcase_16 AC 457 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Eratosthenes(n):
    sieve = [True] * ((n + 1) // 2)
    for i in range(1, (int(n ** 0.5) + 1) // 2):
        if sieve[i]:
            for j in range(i * 3 + 1, (n + 1) // 2, i * 2 + 1):
                sieve[j] = False
    res = [i * 2 + 1 for i, s in enumerate(sieve) if s]
    res[0] = 2
    return res


n = int(input())
prime = Eratosthenes(n)
dp = [False] * (n + 1)
dp[0] = dp[1] = True
for i in range(2, n+1):
    for x in prime:
        if i >= x and dp[i - x] == False:
            dp[i] = True
            break

ans = "Win" if dp[n] == True else "Lose"
print(ans)
0