結果
問題 | No.1058 素敵な数 |
ユーザー | miruca |
提出日時 | 2020-06-17 20:02:06 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 496 bytes |
コンパイル時間 | 128 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-30 05:51:17 |
合計ジャッジ時間 | 854 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
10,752 KB |
testcase_01 | AC | 28 ms
10,752 KB |
testcase_02 | AC | 28 ms
10,880 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
n = int(input()) # 素数でない # 2以上10^5以下の約数を持たない # 10^5以上の素数を保持 def is_prime(n): for i in range(2, int(n ** 0.5) + 1): if n % i == 0: return False return n != 1 lst = [] p = 10 ** 5 + 1 while len(lst) < n + 1: if is_prime(p): lst.append(p) p += 2 # 掛け合わせて小さい順にする p_list = [1] for p1 in lst: for p2 in lst: p_list.append(p1 * p2) p_list.sort() print(p_list[n - 1])