結果

問題 No.7 プライムナンバーゲーム
ユーザー 👑 rin204rin204
提出日時 2022-01-20 21:26:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 574 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 67,200 KB
最終ジャッジ日時 2024-10-01 16:46:03
合計ジャッジ時間 2,428 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,520 KB
testcase_01 AC 38 ms
59,520 KB
testcase_02 AC 134 ms
67,024 KB
testcase_03 AC 53 ms
64,256 KB
testcase_04 AC 53 ms
62,592 KB
testcase_05 AC 50 ms
62,848 KB
testcase_06 AC 70 ms
65,536 KB
testcase_07 AC 64 ms
64,640 KB
testcase_08 AC 56 ms
63,744 KB
testcase_09 AC 83 ms
65,664 KB
testcase_10 AC 38 ms
59,520 KB
testcase_11 AC 64 ms
64,512 KB
testcase_12 AC 110 ms
66,816 KB
testcase_13 AC 110 ms
67,072 KB
testcase_14 AC 131 ms
67,200 KB
testcase_15 AC 129 ms
67,072 KB
testcase_16 AC 127 ms
66,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 20000
isprime = [True] * N
isprime[0] = isprime[1] = False
for i in range(2, int(N ** 0.5 + 1)):
    if not isprime[i]:
        continue
    for j in range(i * i, N, i):
        isprime[j] = False

prime = []
for i in range(N):
    if isprime[i]:
        prime.append(i)

n = int(input()) 
grundy = [1] * (n + 1)
for i in range(2, n + 1):
    se = set()
    for p in prime:
        if p > i:
            break
        se.add(grundy[i - p])
    mex = 0
    while mex in se:
        mex += 1
    grundy[i] = mex

if grundy[n] == 0:
    print("Lose")
else:
    print("Win")
0