結果

問題 No.7 プライムナンバーゲーム
ユーザー 🍡yurahuna🍡yurahuna
提出日時 2016-04-28 20:58:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 489 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 62,848 KB
最終ジャッジ日時 2024-10-01 15:43:09
合計ジャッジ時間 2,121 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 130 ms
62,736 KB
testcase_03 AC 51 ms
61,056 KB
testcase_04 AC 46 ms
60,672 KB
testcase_05 AC 47 ms
61,056 KB
testcase_06 AC 71 ms
62,464 KB
testcase_07 AC 61 ms
62,080 KB
testcase_08 AC 57 ms
61,696 KB
testcase_09 AC 82 ms
62,464 KB
testcase_10 AC 36 ms
51,456 KB
testcase_11 AC 62 ms
62,464 KB
testcase_12 AC 103 ms
62,208 KB
testcase_13 AC 106 ms
62,336 KB
testcase_14 AC 124 ms
62,848 KB
testcase_15 AC 121 ms
62,208 KB
testcase_16 AC 116 ms
62,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

prime = []
def setPrime(n):
    n += 1
    alive = [True] * n
    i = 2
    while i < n:
        if alive[i]:
            prime.append(i)
            j = 2 * i
            while j < n:
                alive[j] = False
                j += i
        i += 1

N = int(input())
setPrime(N)
dp = [False] * (N + 1)
dp[0] = dp[1] = True
for i in range(2, N + 1):
    for p in prime:
        if i - p < 0:
            break
        dp[i] |= not dp[i - p]

print("Win") if dp[N] else print("Lose")
0