結果

問題 No.7 プライムナンバーゲーム
ユーザー togatogatogatoga
提出日時 2015-08-15 07:39:33
言語 Python2
(2.7.18)
結果
MLE  
実行時間 -
コード長 407 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 776,064 KB
最終ジャッジ日時 2024-07-18 09:35:32
合計ジャッジ時間 13,245 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,812 KB
testcase_01 AC 12 ms
6,944 KB
testcase_02 MLE -
testcase_03 AC 111 ms
41,088 KB
testcase_04 AC 31 ms
13,184 KB
testcase_05 WA -
testcase_06 AC 479 ms
203,776 KB
testcase_07 AC 319 ms
132,608 KB
testcase_08 AC 147 ms
56,576 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 324 ms
134,272 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(1 << 30)
N = input()
dp = [-1 for i in range(10010)]

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 (i * i > pos):
            break
        win |= not memo(pos - i)
    dp[pos] = win
    return win

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