結果

問題 No.7 プライムナンバーゲーム
ユーザー otsunekootsuneko
提出日時 2021-05-03 20:41:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 5,000 ms
コード長 715 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 63,616 KB
最終ジャッジ日時 2024-10-01 16:43:23
合計ジャッジ時間 1,885 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 61 ms
63,232 KB
testcase_03 AC 51 ms
60,672 KB
testcase_04 AC 49 ms
59,648 KB
testcase_05 AC 47 ms
59,904 KB
testcase_06 AC 56 ms
62,976 KB
testcase_07 AC 55 ms
62,208 KB
testcase_08 AC 52 ms
62,080 KB
testcase_09 AC 56 ms
62,848 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 53 ms
62,848 KB
testcase_12 AC 58 ms
63,360 KB
testcase_13 AC 59 ms
62,976 KB
testcase_14 AC 61 ms
63,360 KB
testcase_15 AC 60 ms
63,616 KB
testcase_16 AC 59 ms
63,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def sieve(n):
    is_prime = [True for _ in range(n+1)]
    is_prime[0] = False
    is_prime[1] = False

    for i in range(2, n+1):
        if not is_prime[i]:
            continue
        for j in range(i*2, n+1, i):
            is_prime[j] = False
    table = [ i-1 for i in range(1, n+1) if is_prime[i-1]] # 素数のリスト
    return table

N = int(input())

prime = sieve(N)
win_lose = [0]*(N+1)
win_lose[0] = win_lose[1] = 1

for i in range(2,N+1):
    for p in prime:
        if p > i:
            break
        if win_lose[i-p] == 0:
            win_lose[i] = 1
            break
    else:
        win_lose[i] = 0

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