結果

問題 No.7 プライムナンバーゲーム
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-12 21:10:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 435 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 64,988 KB
最終ジャッジ日時 2024-06-28 16:50:28
合計ジャッジ時間 1,743 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,456 KB
testcase_01 WA -
testcase_02 AC 54 ms
63,232 KB
testcase_03 AC 47 ms
62,208 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 47 ms
62,720 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 35 ms
51,968 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 54 ms
63,488 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 55 ms
62,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

primes = []

for i in range(2,n+1):
    check = True
    for p in primes:
        if p**2 > i:
            break
        if i%p == 0:
            check = False
            break
    if check:
        primes.append(i)

dp = [0]*(n+1)
for i in range(n+1):
    for j in primes:
        if i-j < 0:
            break
        if dp[i-j] == 0:
            dp[i] = 1
            break
    
print("Win" if dp[-1] else "Lose")
0