結果

問題 No.7 プライムナンバーゲーム
ユーザー PalearcticPalearctic
提出日時 2018-09-15 22:21:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 883 ms / 5,000 ms
コード長 536 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-01 16:15:36
合計ジャッジ時間 6,458 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 883 ms
10,880 KB
testcase_03 AC 75 ms
10,752 KB
testcase_04 AC 39 ms
10,880 KB
testcase_05 AC 39 ms
10,752 KB
testcase_06 AC 252 ms
10,752 KB
testcase_07 AC 179 ms
10,752 KB
testcase_08 AC 93 ms
10,752 KB
testcase_09 AC 361 ms
10,752 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 183 ms
10,752 KB
testcase_12 AC 579 ms
10,880 KB
testcase_13 AC 609 ms
10,880 KB
testcase_14 AC 816 ms
10,880 KB
testcase_15 AC 773 ms
10,880 KB
testcase_16 AC 702 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

if(N==2):
    print("Lose")
elif(N==3):
    print("Win")
else:
    primelist=[2]
    for i in range(3,N-1,2):
        for j in primelist:
            if(i%j==0):
                break
        else:
            primelist.append(i)
            
    a=[2,2,0,0]
    for i in range(4,N+1):
        for x in [j for j in primelist if(j<i)]:
            if(a[i-x]==0):
                a.append(1)
                break
        else:
            a.append(0)
    if(a[-1]==0):
        print("Lose")
    else:
        print("Win")
0