結果

問題 No.7 プライムナンバーゲーム
ユーザー flippergoflippergo
提出日時 2020-12-21 20:14:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 518 ms / 5,000 ms
コード長 543 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 83,584 KB
最終ジャッジ日時 2024-10-01 16:41:33
合計ジャッジ時間 4,843 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
59,392 KB
testcase_01 AC 47 ms
59,648 KB
testcase_02 AC 518 ms
83,584 KB
testcase_03 AC 59 ms
66,304 KB
testcase_04 AC 54 ms
63,488 KB
testcase_05 AC 55 ms
63,616 KB
testcase_06 AC 169 ms
79,768 KB
testcase_07 AC 128 ms
78,464 KB
testcase_08 AC 64 ms
67,840 KB
testcase_09 AC 236 ms
80,256 KB
testcase_10 AC 47 ms
59,392 KB
testcase_11 AC 124 ms
78,720 KB
testcase_12 AC 358 ms
81,792 KB
testcase_13 AC 385 ms
82,048 KB
testcase_14 AC 507 ms
82,944 KB
testcase_15 AC 491 ms
82,788 KB
testcase_16 AC 435 ms
82,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10000)
P = [1 for _ in range(10**4)]
P[0]=0
P[1]=0
for i in range(2,101):
    for j in range(i*i,10**4,i):
        P[j]=0
Q = []
for i in range(2,10**4):
    if P[i]==1:
        Q.append(i)
memo = {}
def f(n):
    if n==2:
        return "Lose"
    if n==3:
        return "Lose"
    if n in memo:
        return memo[n]
    for q in Q:
        if q>=n:break
        if q<=n-2 and f(n-q)=="Lose":
            memo[n]="Win"
            return memo[n]
    memo[n]="Lose"
    return memo[n]
print(f(int(input())))
0