結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | nebukuro09 |
提出日時 | 2016-09-30 10:35:47 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 1,477 ms / 5,000 ms |
コード長 | 633 bytes |
コンパイル時間 | 103 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 6,528 KB |
最終ジャッジ日時 | 2024-10-01 15:49:27 |
合計ジャッジ時間 | 10,648 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
6,144 KB |
testcase_01 | AC | 9 ms
6,400 KB |
testcase_02 | AC | 1,477 ms
6,400 KB |
testcase_03 | AC | 104 ms
6,400 KB |
testcase_04 | AC | 34 ms
6,400 KB |
testcase_05 | AC | 34 ms
6,272 KB |
testcase_06 | AC | 439 ms
6,400 KB |
testcase_07 | AC | 299 ms
6,400 KB |
testcase_08 | AC | 139 ms
6,400 KB |
testcase_09 | AC | 660 ms
6,272 KB |
testcase_10 | AC | 10 ms
6,400 KB |
testcase_11 | AC | 302 ms
6,400 KB |
testcase_12 | AC | 1,058 ms
6,528 KB |
testcase_13 | AC | 1,127 ms
6,528 KB |
testcase_14 | AC | 1,475 ms
6,528 KB |
testcase_15 | AC | 1,394 ms
6,528 KB |
testcase_16 | AC | 1,301 ms
6,528 KB |
ソースコード
def prime_table(n): list = [True for _ in xrange(n + 1)] i = 2 while i * i <= n: if list[i]: j = i + i while j <= n: list[j] = False j += i i += 1 table = [i for i in xrange(n + 1) if list[i] and i >= 2] return table N = input() table = prime_table(N) grundy = [0 for _ in xrange(N+1)] grundy[0] = 1 grundy[1] = 1 for i in xrange(3, N+1): a = [] for p in table: if i-p < 0: break a.append(grundy[i-p]) j = 0 while j in a: j += 1 grundy[i] = j print 'Win' if grundy[N]>0 else 'Lose'