結果

問題 No.7 プライムナンバーゲーム
ユーザー _matumo__matumo_
提出日時 2019-11-25 09:21:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 817 ms / 5,000 ms
コード長 456 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-10-01 16:28:17
合計ジャッジ時間 6,444 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 817 ms
10,752 KB
testcase_03 AC 74 ms
10,752 KB
testcase_04 AC 36 ms
10,752 KB
testcase_05 AC 36 ms
10,624 KB
testcase_06 AC 247 ms
10,752 KB
testcase_07 AC 175 ms
10,752 KB
testcase_08 AC 89 ms
10,624 KB
testcase_09 AC 369 ms
10,752 KB
testcase_10 AC 26 ms
10,752 KB
testcase_11 AC 175 ms
10,752 KB
testcase_12 AC 576 ms
10,752 KB
testcase_13 AC 621 ms
10,880 KB
testcase_14 AC 808 ms
10,752 KB
testcase_15 AC 769 ms
11,008 KB
testcase_16 AC 712 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime(N):
    pr=[0,0]+[1]*(N-1)
    R =int(N**0.5)
    for i in range(2,R+1):
        if pr[i]:
            for j in range(i+i,N+1,i):
                pr[j]=0
    return [n for n in range(N+1) if pr[n]]

def main():
    N =int(input())
    pa=prime(N)
    pb=[0]*(N+1)
    for i in range(4,N+1):
        for j in pa:
            if i-j<2:       continue
            if pb[i-j]>0:   continue
            pb[i]=1
    print(["Lose","Win"][pb[N]])

main()
0