結果

問題 No.7 プライムナンバーゲーム
ユーザー togatogatogatoga
提出日時 2015-08-15 07:47:31
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,867 ms / 5,000 ms
コード長 622 bytes
コンパイル時間 1,457 ms
コンパイル使用メモリ 76,716 KB
実行使用メモリ 85,376 KB
最終ジャッジ日時 2024-10-01 15:35:46
合計ジャッジ時間 13,265 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
77,568 KB
testcase_01 AC 78 ms
77,440 KB
testcase_02 AC 1,867 ms
84,736 KB
testcase_03 AC 125 ms
78,848 KB
testcase_04 AC 95 ms
78,848 KB
testcase_05 AC 98 ms
78,624 KB
testcase_06 AC 431 ms
81,280 KB
testcase_07 AC 291 ms
80,916 KB
testcase_08 AC 111 ms
79,488 KB
testcase_09 AC 669 ms
82,176 KB
testcase_10 AC 78 ms
77,440 KB
testcase_11 AC 309 ms
80,896 KB
testcase_12 AC 1,168 ms
83,840 KB
testcase_13 AC 1,345 ms
83,840 KB
testcase_14 AC 1,847 ms
85,376 KB
testcase_15 AC 1,571 ms
85,120 KB
testcase_16 AC 1,563 ms
85,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(1 << 30)
N = input()
dp = [-1 for i in range(10010)]
prime = [True for i in range(10010)]
def sieve():
    prime[0] = False
    prime[1] = False
    for i in range(2, 10010):
        if (prime[i]):
            for j in range(i * i, 10010, i):
                prime[j] = False


def memo(pos):
    if (pos == 0 or pos == 1):
        return True
    win = False
    if (dp[pos] >= 0):
        return dp[pos]
    for i in range(2, pos):
        if (prime[i]):
            win |= not memo(pos - i)
    dp[pos] = win
    return win

sieve()
if (memo(N)):
    print "Win"
else:
    print "Lose"
0