結果

問題 No.7 プライムナンバーゲーム
ユーザー mediocreRailmediocreRail
提出日時 2023-08-15 08:40:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,428 ms / 5,000 ms
コード長 825 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-11-23 14:30:00
合計ジャッジ時間 17,323 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
11,904 KB
testcase_01 AC 34 ms
11,776 KB
testcase_02 AC 2,428 ms
11,776 KB
testcase_03 AC 184 ms
11,776 KB
testcase_04 AC 71 ms
11,904 KB
testcase_05 AC 73 ms
11,904 KB
testcase_06 AC 706 ms
11,776 KB
testcase_07 AC 490 ms
12,032 KB
testcase_08 AC 241 ms
11,776 KB
testcase_09 AC 1,057 ms
12,032 KB
testcase_10 AC 34 ms
11,776 KB
testcase_11 AC 499 ms
11,776 KB
testcase_12 AC 1,735 ms
11,904 KB
testcase_13 AC 1,767 ms
11,776 KB
testcase_14 AC 2,339 ms
11,776 KB
testcase_15 AC 2,228 ms
11,776 KB
testcase_16 AC 2,050 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect,collections,itertools,math,functools,heapq
import sys
#sys.setrecursionlimit(10**6)
def I(): return int(sys.stdin.readline().rstrip())
def IN(): return int(input())
def LIN(): return list(map(int, input().split()))
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LF(): return list(map(float,sys.stdin.readline().rstrip().split()))
def SI(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())

"""
方針
"""

n = 10**4
primes = set(range(2, n+1))
for i in range(2, int(n**0.5+1)):
    primes.difference_update(range(i*2, n+1, i))

primes=sorted(primes)

N=I()
dp = [False]*(N+1)

for i in range(2, N):
    for v in primes:
        if i+v > N: break
        dp[i+v] = dp[i+v] or not dp[i]
if dp[N]:
    print('Win')
else:
    print('Lose')
0