結果

問題 No.7 プライムナンバーゲーム
ユーザー zinnnia123zinnnia123
提出日時 2019-09-01 23:14:14
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 460 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-29 20:37:10
合計ジャッジ時間 21,426 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 2,967 ms
10,752 KB
testcase_03 AC 213 ms
10,624 KB
testcase_04 AC 78 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 880 ms
10,624 KB
testcase_07 AC 591 ms
10,752 KB
testcase_08 AC 274 ms
10,624 KB
testcase_09 WA -
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 603 ms
10,880 KB
testcase_12 AC 2,165 ms
10,880 KB
testcase_13 AC 2,282 ms
10,624 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2,619 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

LC = [0]*N
LC[0] = 1
LC[1] = 1

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

for i in range(2,N):
    A = list(filter(lambda x: x <= i, pn))
    B = [0]*len(A)
    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-1] == 0:
    print("Lose")
else:
    print("Win")
0