結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 934 ms
11,008 KB
testcase_03 AC 83 ms
11,008 KB
testcase_04 AC 43 ms
10,752 KB
testcase_05 AC 43 ms
10,752 KB
testcase_06 AC 285 ms
11,008 KB
testcase_07 AC 202 ms
10,880 KB
testcase_08 AC 104 ms
10,752 KB
testcase_09 AC 423 ms
10,880 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 203 ms
10,880 KB
testcase_12 AC 669 ms
10,880 KB
testcase_13 AC 708 ms
11,008 KB
testcase_14 AC 927 ms
11,136 KB
testcase_15 AC 879 ms
11,008 KB
testcase_16 AC 810 ms
10,880 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