結果

問題 No.7 プライムナンバーゲーム
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-12 21:18:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 5,000 ms
コード長 456 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 63,232 KB
最終ジャッジ日時 2024-10-01 16:43:01
合計ジャッジ時間 1,988 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 42 ms
51,200 KB
testcase_02 AC 68 ms
63,232 KB
testcase_03 AC 58 ms
61,824 KB
testcase_04 AC 54 ms
60,672 KB
testcase_05 AC 55 ms
60,544 KB
testcase_06 AC 62 ms
62,592 KB
testcase_07 AC 60 ms
62,848 KB
testcase_08 AC 59 ms
62,720 KB
testcase_09 AC 62 ms
62,720 KB
testcase_10 AC 41 ms
51,584 KB
testcase_11 AC 56 ms
62,336 KB
testcase_12 AC 68 ms
62,592 KB
testcase_13 AC 69 ms
63,232 KB
testcase_14 AC 70 ms
62,720 KB
testcase_15 AC 67 ms
62,592 KB
testcase_16 AC 66 ms
62,976 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)
dp[0] = dp[1] = 1
for i in range(2,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] == 1 else "Lose")
0