結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
11,520 KB
testcase_01 AC 27 ms
11,648 KB
testcase_02 AC 993 ms
12,288 KB
testcase_03 WA -
testcase_04 AC 46 ms
11,520 KB
testcase_05 WA -
testcase_06 AC 299 ms
12,160 KB
testcase_07 AC 218 ms
11,776 KB
testcase_08 AC 116 ms
11,776 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 220 ms
11,776 KB
testcase_12 AC 693 ms
12,288 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 848 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 not f[i-j]:
            flag = True
            break
    f[i] = flag

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