結果

問題 No.7 プライムナンバーゲーム
ユーザー mationaruzoumationaruzou
提出日時 2020-06-19 14:13:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 638 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-07-03 13:19:33
合計ジャッジ時間 5,622 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 684 ms
12,032 KB
testcase_03 AC 62 ms
11,008 KB
testcase_04 AC 34 ms
10,880 KB
testcase_05 WA -
testcase_06 AC 207 ms
11,392 KB
testcase_07 AC 134 ms
11,264 KB
testcase_08 AC 70 ms
11,008 KB
testcase_09 WA -
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 136 ms
11,264 KB
testcase_12 AC 431 ms
11,776 KB
testcase_13 AC 555 ms
11,776 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 621 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
n = int(input())

pflag = [True]*(n+1)
primes = []
for i in range(2, n):
    if pflag[i]:
        primes.append(i)
        num = 2
        while i*num <= n:
            pflag[i*num] = False
            num += 1
sys.setrecursionlimit(10000)
win = [-1]*(n+1)


def ok(n):
    if n == 2 or n == 3:
        win[n] = 0
        return win[n]
    if win[n] != -1:
        return win[n]
    for prime in primes:
        if n-prime < 2:
            win[n] = 0
            return win[n]
        s = ok(n-prime)
        if s == 0:
            win[n] = 1
            return win[n]


if ok(n) == 0:
    print("Lose")
else:
    print("Win")
0