結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 WA -
testcase_02 RE -
testcase_03 AC 226 ms
11,136 KB
testcase_04 AC 77 ms
11,008 KB
testcase_05 WA -
testcase_06 AC 1,016 ms
11,520 KB
testcase_07 AC 595 ms
11,136 KB
testcase_08 AC 289 ms
11,008 KB
testcase_09 WA -
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 599 ms
11,008 KB
testcase_12 AC 2,320 ms
11,520 KB
testcase_13 AC 2,442 ms
11,520 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2,865 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[N] else "Lose")
0