結果

問題 No.7 プライムナンバーゲーム
ユーザー mkawa2mkawa2
提出日時 2019-04-18 21:56:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 584 ms / 5,000 ms
コード長 398 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-01 16:19:53
合計ジャッジ時間 4,551 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 584 ms
10,752 KB
testcase_03 AC 56 ms
10,624 KB
testcase_04 AC 32 ms
10,624 KB
testcase_05 AC 33 ms
10,624 KB
testcase_06 AC 167 ms
10,752 KB
testcase_07 AC 138 ms
10,624 KB
testcase_08 AC 68 ms
10,752 KB
testcase_09 AC 245 ms
10,624 KB
testcase_10 AC 25 ms
10,752 KB
testcase_11 AC 127 ms
10,624 KB
testcase_12 AC 374 ms
10,752 KB
testcase_13 AC 394 ms
10,624 KB
testcase_14 AC 524 ms
10,624 KB
testcase_15 AC 500 ms
10,624 KB
testcase_16 AC 459 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
sosu=[2]
dp=[0]*(n+1)
dp[2]=-1
dp[3]=-1
for i in range(3,n+1,2):
    for s in sosu:
        if i%s==0:
            break
    else:
        sosu+=[i]

for i in range(4,n+1):
    for s in sosu:
        if s>i-2:
            dp[i]=-1
            break
        if dp[i-s]==-1:
            dp[i]=1
            break
    else:
        dp[i]=-1
print("Win") if dp[-1]==1 else print("Lose")
0