結果

問題 No.7 プライムナンバーゲーム
ユーザー cleanttedcleantted
提出日時 2016-10-09 01:45:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,529 ms / 5,000 ms
コード長 716 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-01 15:50:03
合計ジャッジ時間 11,100 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 1,514 ms
10,752 KB
testcase_03 AC 116 ms
10,624 KB
testcase_04 AC 47 ms
10,752 KB
testcase_05 AC 48 ms
10,624 KB
testcase_06 AC 469 ms
10,752 KB
testcase_07 AC 309 ms
10,752 KB
testcase_08 AC 152 ms
10,624 KB
testcase_09 AC 686 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 311 ms
10,624 KB
testcase_12 AC 1,095 ms
10,752 KB
testcase_13 AC 1,175 ms
10,752 KB
testcase_14 AC 1,529 ms
10,880 KB
testcase_15 AC 1,434 ms
10,880 KB
testcase_16 AC 1,342 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
memo = [-1] * (N+1) #-1 -> (not yet), 0 -> win, 1 -> Lose
prime = []

memo[0] = 0    #0 -> win
memo[1] = 0    #0 -> win

#素数列を作る(=prime)
for n in range(2,N+1):
    flag = True
    for m in range(2, n):
        if n%m == 0:
            flag = False
            break
    if flag: prime.append(n)

def res(i):
    if memo[i] != -1: return(memo[i])   #計算済なら、それを返す
    else:
        flag = 1
        for p in prime:
            if p < i: flag = flag * (1 - res(i-p))
            else: break
        memo[i] = flag                      #計算結果をmemoに入れる
        return(flag)

for i in range(N):
    res(i)

if res(N) == 0: print("Win")
else: print("Lose")
0