結果

問題 No.7 プライムナンバーゲーム
ユーザー FromBooskaFromBooska
提出日時 2023-03-02 12:35:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 733 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 65,844 KB
最終ジャッジ日時 2024-09-17 08:19:08
合計ジャッジ時間 1,921 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
62,952 KB
testcase_01 AC 47 ms
62,148 KB
testcase_02 AC 60 ms
65,844 KB
testcase_03 AC 52 ms
63,888 KB
testcase_04 AC 51 ms
64,028 KB
testcase_05 AC 51 ms
63,476 KB
testcase_06 AC 55 ms
63,908 KB
testcase_07 AC 55 ms
64,096 KB
testcase_08 AC 53 ms
63,852 KB
testcase_09 AC 56 ms
64,968 KB
testcase_10 AC 47 ms
61,884 KB
testcase_11 AC 54 ms
64,572 KB
testcase_12 AC 58 ms
64,660 KB
testcase_13 AC 58 ms
64,520 KB
testcase_14 AC 60 ms
65,224 KB
testcase_15 AC 60 ms
64,784 KB
testcase_16 AC 59 ms
64,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 1次元dp, dp[i] 数iで手番の人は勝つ1、負ける0
# 昇順で埋めていく
# 素数は最初に列挙する
# 10**5だが素数の数は少ないので2重ループで間に合うのでは

mx = 10000
is_prime = [1]*(mx + 1)
is_prime[0] = 0  
is_prime[1] = 0
for p in range(2, mx + 1):
    if is_prime[p]:
        for q in range(2*p, mx + 1, p):
            is_prime[q] = 0

primes = []
for i in range(mx):
    if is_prime[i] == 1:
        primes.append(i)
        
N = int(input())
dp = [0]*(N+1)
for i in range(4, N+1):
    for p in primes:
        if i-p < 2:
            break
        if dp[i-p] == 0:
            dp[i] = 1
            break
#print(dp)
    
if dp[N] == 1:
    print('Win')
else:
    print('Lose')

0