結果

問題 No.7 プライムナンバーゲーム
ユーザー s_shoheis_shohei
提出日時 2020-06-13 13:20:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 5,000 ms
コード長 614 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 62,464 KB
最終ジャッジ日時 2024-10-01 16:34:57
合計ジャッジ時間 2,142 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 101 ms
62,336 KB
testcase_03 AC 56 ms
60,928 KB
testcase_04 AC 49 ms
60,160 KB
testcase_05 AC 48 ms
60,032 KB
testcase_06 AC 62 ms
61,952 KB
testcase_07 AC 58 ms
61,824 KB
testcase_08 AC 53 ms
61,312 KB
testcase_09 AC 68 ms
61,696 KB
testcase_10 AC 38 ms
51,712 KB
testcase_11 AC 59 ms
61,952 KB
testcase_12 AC 80 ms
62,464 KB
testcase_13 AC 83 ms
62,208 KB
testcase_14 AC 92 ms
61,952 KB
testcase_15 AC 90 ms
62,080 KB
testcase_16 AC 87 ms
62,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    for i in range(2, n+1):
        if is_prime[i-1]:
            j = 2 * i
            while j <= n:
                is_prime[j-1] = False
                j += i
    table = [ i for i in range(1, n+1) if is_prime[i-1]]
    return is_prime, table

_,primes=sieve(n)

table=[False]*(n+1)

table[0]=True # win
table[1]=True

for num in range(2,n+1):
    for p in primes:
        if p>num:
            break
        if not table[num-p]:
            table[num]=True
if table[-1]:
    print("Win")
else:
    print("Lose")
0