結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | 80 |
提出日時 | 2018-09-06 00:21:20 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 804 bytes |
コンパイル時間 | 100 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,520 KB |
最終ジャッジ日時 | 2024-04-27 16:13:10 |
合計ジャッジ時間 | 1,529 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
10,752 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | AC | 74 ms
10,880 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
ソースコード
# -*- coding: utf-8 -*- N = int(input()) isPrime = [True] * (N + 1) #エラトステネスの篩 for i in range(2,N + 1) : if isPrime[i]: for j in range(2 * i,N + 1,i): isPrime[j]=False dp = [-1] * (N + 1) #grundy数を求める def grundy(x): #計算済みの場合 if dp[x] != -1 : return dp[x] #2、または3を渡されたら負け if x == 2 or x == 3: dp[x] = 0 return dp[x] #結果を収納するリスト lst = [] for i in range(2,x+1): #iが素数で、かつ現在値からiを引いた数が2以上 if isPrime[i] and x-i >= 4: lst.append(grundy(x-i)) dp[x] = len(lst) return dp[x] res = grundy(N) if res!=0: print("Lose") else: print("Win")