結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | togatoga |
提出日時 | 2015-08-25 10:14:18 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 649 ms / 5,000 ms |
コード長 | 710 bytes |
コンパイル時間 | 106 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,904 KB |
最終ジャッジ日時 | 2024-10-01 15:36:18 |
合計ジャッジ時間 | 5,315 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,880 KB |
testcase_01 | AC | 29 ms
10,880 KB |
testcase_02 | AC | 649 ms
11,904 KB |
testcase_03 | AC | 68 ms
11,008 KB |
testcase_04 | AC | 40 ms
11,008 KB |
testcase_05 | AC | 40 ms
10,880 KB |
testcase_06 | AC | 222 ms
11,392 KB |
testcase_07 | AC | 147 ms
11,264 KB |
testcase_08 | AC | 84 ms
11,008 KB |
testcase_09 | AC | 330 ms
11,520 KB |
testcase_10 | AC | 32 ms
11,008 KB |
testcase_11 | AC | 152 ms
11,264 KB |
testcase_12 | AC | 483 ms
11,648 KB |
testcase_13 | AC | 498 ms
11,776 KB |
testcase_14 | AC | 633 ms
11,776 KB |
testcase_15 | AC | 621 ms
11,904 KB |
testcase_16 | AC | 576 ms
11,776 KB |
ソースコード
import sys import time sys.setrecursionlimit(1 << 30) N = eval(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")