結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | sdads |
提出日時 | 2019-01-31 13:39:29 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 818 bytes |
コンパイル時間 | 299 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-11-14 07:10:22 |
合計ジャッジ時間 | 1,442 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
ソースコード
import sys sys.setrecursionlimit(10000) from sympy import sieve N = int(input()) dq = [-1] * 10010 # 2と3になると負けか確定なので2と3は0とする。 dq[2] = 0 dq[3] = 0 #N以下の素数の抽出 q = [] q.extend([i for i in sieve.primerange(1, N + 1)]) def grundy(x): s = set() #集合sを作成 for i in reversed(q): if (x - i >= 2): if(dq[x - i] != -1): s.add(dq[x - i]) else: dq[x - i] = grundy(x - i) s.add(dq[x - i]) #grundy数を集合に入れる #集合sの値を確認して、sにない最小の数値をdq[x]とする。 for i in range(len(q) + 1): if i not in s: dq[x] = i break return dq[x] if(grundy(N) == 0): print("Lose") else: print("Win")