結果

問題 No.7 プライムナンバーゲーム
ユーザー shimonohnishishimonohnishi
提出日時 2024-06-10 17:32:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 565 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 60,340 KB
最終ジャッジ日時 2024-06-10 17:32:43
合計ジャッジ時間 1,732 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,452 KB
testcase_01 WA -
testcase_02 AC 40 ms
59,576 KB
testcase_03 AC 39 ms
58,788 KB
testcase_04 AC 38 ms
57,540 KB
testcase_05 WA -
testcase_06 AC 40 ms
60,236 KB
testcase_07 AC 40 ms
59,068 KB
testcase_08 AC 41 ms
59,124 KB
testcase_09 WA -
testcase_10 AC 37 ms
53,120 KB
testcase_11 AC 40 ms
58,492 KB
testcase_12 AC 40 ms
58,432 KB
testcase_13 AC 37 ms
59,828 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 37 ms
59,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)
n=int(input())

def get_primes(n):
  is_prime = [True] * (n + 1)
  is_prime[0] = False
  is_prime[1] = False
  for i in range(2, int(n ** 0.5) + 1):
    if is_prime[i]:
      for j in range(i * i, n + 1, i):
        is_prime[j] = False
  return [i for i in range(n + 1) if is_prime[i]]

primes = get_primes(n)
dp=[None]*(n+1)
dp[0]=dp[1]=True

def dfs(x):
  if dp[x]!=None:
    return dp[x]
  for p in primes:
    if x-p<0:
      break
    if not dp[x-p]:
      return True
  return False  
print('Win' if dfs(n) else 'Lose')
0