結果

問題 No.7 プライムナンバーゲーム
ユーザー KudeKude
提出日時 2020-09-03 07:36:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 431 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 63,920 KB
最終ジャッジ日時 2024-10-01 16:38:49
合計ジャッジ時間 1,607 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,132 KB
testcase_01 AC 35 ms
53,800 KB
testcase_02 AC 52 ms
63,280 KB
testcase_03 AC 46 ms
62,512 KB
testcase_04 AC 41 ms
59,872 KB
testcase_05 AC 40 ms
61,100 KB
testcase_06 AC 46 ms
62,956 KB
testcase_07 AC 48 ms
63,232 KB
testcase_08 AC 44 ms
62,448 KB
testcase_09 AC 50 ms
63,680 KB
testcase_10 AC 35 ms
52,004 KB
testcase_11 AC 47 ms
61,636 KB
testcase_12 AC 51 ms
63,220 KB
testcase_13 AC 51 ms
63,384 KB
testcase_14 AC 57 ms
63,920 KB
testcase_15 AC 55 ms
62,288 KB
testcase_16 AC 54 ms
63,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

sieve = [True] * (n + 1)
primes = []
for p in range(2, n + 1):
    if sieve[p]:
        primes.append(p)
        for i in range(p * p, n + 1, p):
            sieve[i] = False

dp = [True] * (n + 1)
for i in range(2, n + 1):
    ok = False
    for p in primes:
        if p > i:
            break
        if dp[i-p] == False:
            ok = True
            break
    dp[i] = ok
print('Win' if dp[n] else 'Lose')
0