結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | togatoga |
提出日時 | 2015-08-15 07:47:13 |
言語 | Python2 (2.7.18) |
結果 |
MLE
|
実行時間 | - |
コード長 | 622 bytes |
コンパイル時間 | 459 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 776,192 KB |
最終ジャッジ日時 | 2024-07-18 09:36:40 |
合計ジャッジ時間 | 31,124 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 14 ms
7,040 KB |
testcase_01 | AC | 14 ms
7,040 KB |
testcase_02 | MLE | - |
testcase_03 | AC | 260 ms
41,344 KB |
testcase_04 | AC | 69 ms
13,312 KB |
testcase_05 | AC | 67 ms
13,056 KB |
testcase_06 | AC | 1,255 ms
203,904 KB |
testcase_07 | AC | 813 ms
132,608 KB |
testcase_08 | AC | 358 ms
56,832 KB |
testcase_09 | AC | 1,932 ms
320,640 KB |
testcase_10 | AC | 13 ms
7,168 KB |
testcase_11 | AC | 820 ms
134,400 KB |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
ソースコード
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"