結果

問題 No.7 プライムナンバーゲーム
ユーザー ronpooronpoo
提出日時 2023-08-22 11:34:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 610 bytes
コンパイル時間 553 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 62,592 KB
最終ジャッジ日時 2024-05-09 17:14:27
合計ジャッジ時間 2,612 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,608 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 56 ms
62,336 KB
testcase_03 AC 48 ms
61,312 KB
testcase_04 AC 44 ms
59,904 KB
testcase_05 AC 45 ms
60,160 KB
testcase_06 AC 50 ms
62,592 KB
testcase_07 AC 48 ms
61,952 KB
testcase_08 AC 48 ms
62,080 KB
testcase_09 AC 50 ms
62,080 KB
testcase_10 AC 37 ms
52,480 KB
testcase_11 AC 50 ms
62,080 KB
testcase_12 AC 53 ms
62,336 KB
testcase_13 AC 53 ms
62,208 KB
testcase_14 AC 54 ms
61,952 KB
testcase_15 AC 55 ms
62,464 KB
testcase_16 AC 52 ms
62,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

def prime(x):
    prime = [x if x%2==1 else 2 for x in range(x+1)]
    prime[0] = 1
    for i in range(3, int(x**0.5)+2, 2):
        if prime[i] != i:
            continue   
        for j in range(2*i, x+1, i):
            if prime[j] == j:
                prime[j] = i
    p = [i for i in range(2, x+1) if prime[i] == i]
    return p

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