結果

問題 No.7 プライムナンバーゲーム
ユーザー togatogatogatoga
提出日時 2015-08-15 07:40:36
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 407 bytes
コンパイル時間 1,310 ms
コンパイル使用メモリ 76,300 KB
実行使用メモリ 85,692 KB
最終ジャッジ日時 2024-07-18 09:35:39
合計ジャッジ時間 4,461 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
76,436 KB
testcase_01 AC 78 ms
76,188 KB
testcase_02 AC 257 ms
84,116 KB
testcase_03 AC 95 ms
79,672 KB
testcase_04 AC 92 ms
78,460 KB
testcase_05 WA -
testcase_06 AC 136 ms
81,720 KB
testcase_07 AC 121 ms
80,932 KB
testcase_08 AC 93 ms
79,620 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 121 ms
80,780 KB
testcase_12 AC 208 ms
83,752 KB
testcase_13 AC 219 ms
83,832 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 238 ms
83,884 KB
権限があれば一括ダウンロードができます

ソースコード

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