結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | togatoga |
提出日時 | 2015-08-15 07:55:34 |
言語 | PyPy2 (7.3.15) |
結果 |
AC
|
実行時間 | 543 ms / 5,000 ms |
コード長 | 702 bytes |
コンパイル時間 | 406 ms |
コンパイル使用メモリ | 76,928 KB |
実行使用メモリ | 84,608 KB |
最終ジャッジ日時 | 2024-10-01 15:35:04 |
合計ジャッジ時間 | 5,457 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 95 ms
78,336 KB |
testcase_01 | AC | 96 ms
77,952 KB |
testcase_02 | AC | 498 ms
84,608 KB |
testcase_03 | AC | 104 ms
78,976 KB |
testcase_04 | AC | 96 ms
78,464 KB |
testcase_05 | AC | 97 ms
78,732 KB |
testcase_06 | AC | 180 ms
80,768 KB |
testcase_07 | AC | 145 ms
80,256 KB |
testcase_08 | AC | 109 ms
79,232 KB |
testcase_09 | AC | 242 ms
81,792 KB |
testcase_10 | AC | 92 ms
77,696 KB |
testcase_11 | AC | 147 ms
80,384 KB |
testcase_12 | AC | 373 ms
83,328 KB |
testcase_13 | AC | 405 ms
83,200 KB |
testcase_14 | AC | 515 ms
83,968 KB |
testcase_15 | AC | 543 ms
83,840 KB |
testcase_16 | AC | 542 ms
83,456 KB |
ソースコード
import sys import time sys.setrecursionlimit(1 << 30) N = input() dp = [-1 for i in range(10010)] prime = [True for i in range(10010)] p = [] def sieve(): prime[0] = False prime[1] = False for i in range(2, 10001): if (prime[i]): p.append(i) for j in range(i * i, 10001, 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 p: if (i > pos): break win |= not memo(pos - i) if (win): break dp[pos] = win return win sieve() if (memo(N)): print "Win" else: print "Lose"