結果

問題 No.7 プライムナンバーゲーム
ユーザー human_cipherhuman_cipher
提出日時 2021-06-16 02:23:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,102 ms / 5,000 ms
コード長 806 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-10-01 16:44:30
合計ジャッジ時間 7,879 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 1,097 ms
11,264 KB
testcase_03 AC 90 ms
10,880 KB
testcase_04 AC 41 ms
10,752 KB
testcase_05 AC 40 ms
10,752 KB
testcase_06 AC 322 ms
11,008 KB
testcase_07 AC 215 ms
11,008 KB
testcase_08 AC 107 ms
11,008 KB
testcase_09 AC 437 ms
10,880 KB
testcase_10 AC 26 ms
10,880 KB
testcase_11 AC 212 ms
10,880 KB
testcase_12 AC 686 ms
11,008 KB
testcase_13 AC 722 ms
11,008 KB
testcase_14 AC 1,102 ms
11,008 KB
testcase_15 AC 939 ms
11,008 KB
testcase_16 AC 864 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

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 = [False for _ in range(n+1)] #dp[i]:iで先手番になったら先手が勝利かどうか
    dp[0],dp[1] = True,True
    P = eratos(n)
    for i in range(n+1):
        for p in P:
            if i-p >= 0:
                if not dp[i-p]:
                    dp[i] = True
    return dp[n]

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

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