結果

問題 No.7 プライムナンバーゲーム
ユーザー human_cipherhuman_cipher
提出日時 2021-06-16 02:13:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 842 bytes
コンパイル時間 497 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-09 04:30:52
合計ジャッジ時間 10,521 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 1,408 ms
10,880 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 52 ms
10,624 KB
testcase_06 AC 414 ms
10,880 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 609 ms
10,880 KB
testcase_10 WA -
testcase_11 AC 294 ms
10,880 KB
testcase_12 WA -
testcase_13 AC 1,000 ms
11,008 KB
testcase_14 AC 1,421 ms
11,008 KB
testcase_15 AC 1,217 ms
10,880 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt

def eratos(n):
    E = [True for _ in range(n+1)] #E[i]:iが素数かどうか
    E[0],E[1] = False,False
    for a in range(2,int(sqrt(n))+1):
        if E[a]:
            for i in range(2,n // a + 1):
                E[a * i] = False
    P = set()
    for a in range(n+1):
        if E[a]:
            P.add(a)
    return P

def solve(n):
    dp = [None for _ in range(n+1)] #dp[i]:iで先手番になったら先手が勝利かどうか
    dp[0],dp[1],dp[2],dp[3] = True,True,False,False
    P = eratos(n)
    for i in range(2,n+1):
        for p in P:
            if i+p <= n:
                if dp[i+p] == None:
                    dp[i+p] = not dp[i]
    return dp[n]

def main():
    n = int(input())
    if solve(n):
        print("Win")
    else:
        print("Lose")

if __name__ == "__main__":
    main()
0