結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | はむ吉🐹 |
提出日時 | 2016-01-03 12:12:38 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 313 ms / 5,000 ms |
コード長 | 1,239 bytes |
コンパイル時間 | 284 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-10-01 15:39:54 |
合計ジャッジ時間 | 3,330 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
10,880 KB |
testcase_01 | AC | 34 ms
10,752 KB |
testcase_02 | AC | 313 ms
10,880 KB |
testcase_03 | AC | 52 ms
10,880 KB |
testcase_04 | AC | 37 ms
10,752 KB |
testcase_05 | AC | 37 ms
10,880 KB |
testcase_06 | AC | 114 ms
10,880 KB |
testcase_07 | AC | 88 ms
10,880 KB |
testcase_08 | AC | 56 ms
10,880 KB |
testcase_09 | AC | 157 ms
10,880 KB |
testcase_10 | AC | 32 ms
10,752 KB |
testcase_11 | AC | 88 ms
11,008 KB |
testcase_12 | AC | 233 ms
11,008 KB |
testcase_13 | AC | 245 ms
10,880 KB |
testcase_14 | AC | 312 ms
10,880 KB |
testcase_15 | AC | 299 ms
11,008 KB |
testcase_16 | AC | 277 ms
10,880 KB |
ソースコード
#!/usr/bin/env python3 # -*- coding: utf-8 -*- import array import math def primes_by_eratosthenes(limit): """ Generate the sequence of prime numbers by Eratosthenes' method. :param limit: The maximum intenger (> 1) to be examined. :type limit: int :return: the sequence of prime numbers :rtype: an instance of :class:`array.array` """ search_list = array.array("Q", range(2, limit + 1)) primes = array.array("Q") while True: p = search_list.pop(0) primes.append(p) if p > math.sqrt(limit): break else: search_list = array.array("Q", filter( lambda x: x % p != 0, search_list)) primes.extend(search_list) return primes def judge(n): dp = array.array("B", [True, True]) primes = primes_by_eratosthenes(n) for m in range(2, n + 1): for p in primes: if p > m: dp.append(False) break elif not dp[m - p]: dp.append(True) break else: continue else: dp.append(False) return dp[n] if __name__ == "__main__": print("Win" if judge(int(input())) else "Lose")