結果

問題 No.7 プライムナンバーゲーム
ユーザー mahiro72mahiro72
提出日時 2021-10-08 16:11:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 292 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-07-23 03:22:55
合計ジャッジ時間 22,811 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 WA -
testcase_02 RE -
testcase_03 AC 216 ms
11,008 KB
testcase_04 AC 76 ms
11,008 KB
testcase_05 WA -
testcase_06 AC 1,005 ms
11,520 KB
testcase_07 AC 591 ms
11,136 KB
testcase_08 AC 286 ms
11,008 KB
testcase_09 WA -
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 612 ms
11,008 KB
testcase_12 AC 2,380 ms
11,520 KB
testcase_13 AC 2,491 ms
11,648 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2,831 ms
11,520 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]*10000
f[0]=f[1]=True
for i in range(2,N+1):
    flag = False
    for j in hurui:
        if i-j>=0:
            f[i]|=f[i-j]
print("Win"if f[i] else "Lose")
0