結果

問題 No.7 プライムナンバーゲーム
ユーザー compass19compass19
提出日時 2017-01-02 23:37:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,353 ms / 5,000 ms
コード長 577 bytes
コンパイル時間 67 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-10-01 15:51:53
合計ジャッジ時間 9,197 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 1,353 ms
11,392 KB
testcase_03 AC 99 ms
10,880 KB
testcase_04 AC 47 ms
10,880 KB
testcase_05 AC 46 ms
10,752 KB
testcase_06 AC 387 ms
11,008 KB
testcase_07 AC 253 ms
11,008 KB
testcase_08 AC 136 ms
11,008 KB
testcase_09 AC 552 ms
11,520 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 266 ms
11,136 KB
testcase_12 AC 847 ms
11,392 KB
testcase_13 AC 936 ms
11,392 KB
testcase_14 AC 1,180 ms
11,392 KB
testcase_15 AC 1,124 ms
11,392 KB
testcase_16 AC 1,212 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt, ceil

def era_prime(N):
    temp = [True]*(N+1)
    temp[0] = temp[1] = False
    for i in range(2, ceil(sqrt(N+1))):
        if temp[i]:
            temp[i+i::i] = [False]*(len(temp[i+i::i]))                            
    primes = [ n for n in range(N+1) if temp[n] ]
    return primes



n = int(input())
table = {0: True, 1: True}
primes = era_prime(n)

for i in range(2, n+1):
	# 自分以外の素数を引く
	tmp = [not table[i-x] for x in primes if x <= i]
	table[i] = True if any(tmp) else False

ans = 'Win' if table[n] else 'Lose'
print(ans)
0