結果

問題 No.7 プライムナンバーゲーム
ユーザー netyo715netyo715
提出日時 2021-06-21 11:21:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 532 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 13,952 KB
最終ジャッジ日時 2024-06-22 22:48:08
合計ジャッジ時間 34,021 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 TLE -
testcase_03 AC 291 ms
11,392 KB
testcase_04 AC 91 ms
11,008 KB
testcase_05 AC 91 ms
11,136 KB
testcase_06 AC 1,343 ms
12,544 KB
testcase_07 AC 1,021 ms
11,904 KB
testcase_08 AC 393 ms
11,520 KB
testcase_09 AC 2,049 ms
12,928 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 1,013 ms
11,904 KB
testcase_12 AC 3,523 ms
13,312 KB
testcase_13 WA -
testcase_14 TLE -
testcase_15 AC 4,833 ms
13,696 KB
testcase_16 AC 4,431 ms
13,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10**6)
N = int(input())

hurui = set(range(2, N+1))
for i in range(2, N+1):
    for j in range(i*2, N+1, i):
        hurui.discard(j)

dp = [-1]*(N+10)
dp[0] = 0
dp[1] = 0
def grundy(x):
    if dp[x] != -1:
        return dp[x]
    s = set()
    for i in range(2, x+1):
        if i in hurui:
            s.add(grundy(x-i))
    for i in range(x+1):
        if i not in s:
            dp[x] = i
            return i

if grundy(N)&1:
    print("Lose")
else:
    print("Win")
0