結果

問題 No.7 プライムナンバーゲーム
ユーザー zinnnia123zinnnia123
提出日時 2019-09-01 23:33:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,691 ms / 5,000 ms
コード長 447 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-01 16:26:35
合計ジャッジ時間 18,133 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 2,691 ms
10,752 KB
testcase_03 AC 176 ms
10,624 KB
testcase_04 AC 65 ms
10,624 KB
testcase_05 AC 63 ms
10,752 KB
testcase_06 AC 747 ms
10,624 KB
testcase_07 AC 523 ms
10,752 KB
testcase_08 AC 237 ms
10,752 KB
testcase_09 AC 1,163 ms
10,624 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 534 ms
10,624 KB
testcase_12 AC 1,924 ms
10,752 KB
testcase_13 AC 1,959 ms
10,752 KB
testcase_14 AC 2,565 ms
10,752 KB
testcase_15 AC 2,401 ms
10,880 KB
testcase_16 AC 2,208 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

LC = [0]*(N+1)
LC[0] = 1
LC[1] = 1

pn = [2]
for L in range(3, N+1):
    chk = True
    for L2 in pn:
        if L%L2 == 0:chk = False
    if chk == True:pn.append(L)

for i in range(2,N+1):
    A = list(filter(lambda x: x <= i, pn))
    flag = True
    for j in range(len(A)):
        if LC[i - A[j]] == 0:
            flag = False
    if flag == False:
        LC[i] = 1

if LC[N] == 0:
    print("Lose")
else:
    print("Win")
0