結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,520 KB
testcase_01 AC 32 ms
11,520 KB
testcase_02 AC 619 ms
12,288 KB
testcase_03 AC 70 ms
11,776 KB
testcase_04 AC 41 ms
11,648 KB
testcase_05 WA -
testcase_06 AC 211 ms
12,160 KB
testcase_07 AC 140 ms
11,904 KB
testcase_08 AC 82 ms
11,776 KB
testcase_09 WA -
testcase_10 AC 31 ms
11,648 KB
testcase_11 AC 141 ms
11,648 KB
testcase_12 AC 450 ms
12,160 KB
testcase_13 AC 478 ms
12,288 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 541 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)

f = [False]*100000
f[0] = True
f[1] = True
for i in range(2, N):
    flag = False
    for j in hurui:
        if j > i:
            continue
        if not f[i-j]:
            flag = True
            break
    f[i] = flag

if f[N-1]:
    print("Win")
else:
    print("Lose")
0