結果

問題 No.7 プライムナンバーゲーム
ユーザー zinnnia123zinnnia123
提出日時 2019-09-01 23:14:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 460 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-05-07 06:15:21
合計ジャッジ時間 21,247 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 3,069 ms
10,752 KB
testcase_03 AC 210 ms
10,752 KB
testcase_04 AC 79 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 867 ms
10,880 KB
testcase_07 AC 590 ms
10,752 KB
testcase_08 AC 275 ms
10,752 KB
testcase_09 WA -
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 603 ms
11,008 KB
testcase_12 AC 2,126 ms
10,752 KB
testcase_13 AC 2,338 ms
10,880 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2,560 ms
10,880 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