結果

問題 No.7 プライムナンバーゲーム
ユーザー shinshin
提出日時 2022-10-16 16:35:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 340 ms / 5,000 ms
コード長 535 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-27 11:42:02
合計ジャッジ時間 3,527 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 340 ms
10,880 KB
testcase_03 AC 48 ms
10,752 KB
testcase_04 AC 35 ms
10,752 KB
testcase_05 AC 34 ms
10,752 KB
testcase_06 AC 114 ms
10,624 KB
testcase_07 AC 87 ms
10,752 KB
testcase_08 AC 54 ms
10,624 KB
testcase_09 AC 159 ms
10,752 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 85 ms
10,752 KB
testcase_12 AC 248 ms
10,880 KB
testcase_13 AC 259 ms
10,752 KB
testcase_14 AC 334 ms
10,752 KB
testcase_15 AC 315 ms
10,880 KB
testcase_16 AC 296 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#プライムナンバーゲーム

N = int(input())

p = [True for i in range(N+1)]
p_list = []

b = [False for i in range(N + 1)]

for i in range(2 , N+1):
    if p[i]:
        p_list.append(i)
        for j in range(N // i + 1):
            p[i * j] = False
    else:
        continue

for i in range(2 , N + 1):
    if b[i]:
        continue
    else:
        for k in p_list:
            if i + k <= N:
                b[i + k] = True
            else:
                continue

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