結果

問題 No.7 プライムナンバーゲーム
ユーザー ssmkzkssmkzk
提出日時 2018-10-24 00:24:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 696 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-11-19 04:48:35
合計ジャッジ時間 4,617 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 595 ms
11,136 KB
testcase_03 AC 57 ms
10,880 KB
testcase_04 AC 34 ms
10,752 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 AC 170 ms
11,136 KB
testcase_07 AC 128 ms
11,008 KB
testcase_08 AC 68 ms
10,880 KB
testcase_09 AC 239 ms
11,136 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 131 ms
10,880 KB
testcase_12 WA -
testcase_13 AC 397 ms
11,136 KB
testcase_14 AC 576 ms
11,264 KB
testcase_15 AC 520 ms
11,264 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def SoE(x):
    if x < 2:
        return []
    
    l = [i for i in range(x + 1)]
    l[1] = 0
    
    for i in l:
        if i > math.sqrt(x):
            break
        if i == 0:
            continue
        for j in range(2 * i , x + 1, i):
            l[j] = 0
    
    return [i for i in l if i != 0]

N = int(input())
l_prime = SoE(N)

dp = [-1 for i in range(N + 1)]
dp[2] = 0
dp[3] = 0

for i in range(4, N + 1):
    for prime in l_prime:
        if i - prime < 2 :
            dp[i] = 0
            break
        if dp[i - prime] == 0:
            dp[i] = 1
            break
    else:
        dp[-1] = 0




if dp[-1]:
    print("Win")
else:
    print("Lose")


        
0