結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | togatoga |
提出日時 | 2015-08-15 07:50:42 |
言語 | PyPy2 (7.3.15) |
結果 |
AC
|
実行時間 | 720 ms / 5,000 ms |
コード長 | 678 bytes |
コンパイル時間 | 281 ms |
コンパイル使用メモリ | 77,188 KB |
実行使用メモリ | 84,976 KB |
最終ジャッジ日時 | 2024-10-01 15:35:54 |
合計ジャッジ時間 | 5,594 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 79 ms
77,824 KB |
testcase_01 | AC | 81 ms
77,848 KB |
testcase_02 | AC | 720 ms
84,976 KB |
testcase_03 | AC | 101 ms
79,020 KB |
testcase_04 | AC | 91 ms
78,720 KB |
testcase_05 | AC | 85 ms
78,720 KB |
testcase_06 | AC | 204 ms
81,152 KB |
testcase_07 | AC | 158 ms
80,384 KB |
testcase_08 | AC | 100 ms
79,360 KB |
testcase_09 | AC | 261 ms
82,072 KB |
testcase_10 | AC | 78 ms
77,824 KB |
testcase_11 | AC | 146 ms
80,512 KB |
testcase_12 | AC | 429 ms
83,328 KB |
testcase_13 | AC | 445 ms
83,372 KB |
testcase_14 | AC | 598 ms
84,736 KB |
testcase_15 | AC | 542 ms
84,096 KB |
testcase_16 | AC | 503 ms
84,244 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)] 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) if (win): break dp[pos] = win return win sieve() if (memo(N)): print "Win" else: print "Lose"