結果

問題 No.7 プライムナンバーゲーム
ユーザー _matumo__matumo_
提出日時 2019-11-23 11:00:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 864 ms / 5,000 ms
コード長 440 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-10-01 16:27:02
合計ジャッジ時間 6,582 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 864 ms
11,008 KB
testcase_03 AC 75 ms
10,752 KB
testcase_04 AC 37 ms
10,752 KB
testcase_05 AC 38 ms
10,880 KB
testcase_06 AC 264 ms
11,008 KB
testcase_07 AC 178 ms
10,752 KB
testcase_08 AC 93 ms
10,752 KB
testcase_09 AC 377 ms
11,008 KB
testcase_10 AC 25 ms
10,880 KB
testcase_11 AC 182 ms
10,752 KB
testcase_12 AC 616 ms
10,880 KB
testcase_13 AC 646 ms
11,008 KB
testcase_14 AC 857 ms
11,008 KB
testcase_15 AC 818 ms
11,008 KB
testcase_16 AC 716 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime(N):
    pr=[2]
    pa=[n for n in range(3,N+1,2)]
    R =int(N**0.5)
    m =3
    while m<=R:
        pr.append(m)
        pa=[n for n in pa if n%m]
        m=pa[0]
    return pr+pa

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