結果

問題 No.7 プライムナンバーゲーム
ユーザー zombietanzombietan
提出日時 2016-05-08 03:06:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 483 ms / 5,000 ms
コード長 580 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-01 15:46:07
合計ジャッジ時間 4,190 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 440 ms
10,752 KB
testcase_03 AC 54 ms
10,624 KB
testcase_04 AC 35 ms
10,624 KB
testcase_05 AC 33 ms
10,624 KB
testcase_06 AC 175 ms
10,624 KB
testcase_07 AC 119 ms
10,496 KB
testcase_08 AC 64 ms
10,624 KB
testcase_09 AC 214 ms
10,624 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 113 ms
10,624 KB
testcase_12 AC 330 ms
10,496 KB
testcase_13 AC 361 ms
10,624 KB
testcase_14 AC 483 ms
10,752 KB
testcase_15 AC 424 ms
10,752 KB
testcase_16 AC 386 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
def primes():
    n = 2
    p = []
    while True:
        if not any( n % f == 0 for f in p ):
            yield(n)
            p.append( n )
        n += 1

p = primes()
r = []
while True:
    d = next(p)
    if d <= N:
        r.append(d)
    else:
        break

memo = ['Lose']*(N+1)
memo[0] = 'Win'
memo[1] = 'Win'

for i in range(2, N+1):
    c = set()
    for s in r:
        if s > i:
            break
        elif memo[i-s] == 'Lose': #素数を引いて一つでも'Lose'があれば'Win'
            memo[i] = 'Win'
            break

print(memo[N])
0