結果
問題 | No.1058 素敵な数 |
ユーザー | neterukun |
提出日時 | 2020-05-23 11:16:28 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 820 bytes |
コンパイル時間 | 239 ms |
コンパイル使用メモリ | 81,848 KB |
実行使用メモリ | 67,764 KB |
最終ジャッジ日時 | 2024-10-07 15:49:44 |
合計ジャッジ時間 | 1,421 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 62 ms
66,740 KB |
testcase_01 | AC | 61 ms
66,636 KB |
testcase_02 | AC | 60 ms
65,860 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
def make_prime_table(n): """n以下の非負整数が素数であるかを判定したリストを出力する 計算量: O(NloglogN) 入出力例: 6 -> [False, False, True, True, False, True, False] """ is_prime = [True] * (n + 1) is_prime[0] = False is_prime[1] = False for i in range(2, int(n ** 0.5) + 1): if not is_prime[i]: continue for j in range(2 * i, n + 1, i): is_prime[j] = False return is_prime table = make_prime_table(10 ** 6) n = int(input()) if n == 1: print(1) exit() n -= 1 primes = [] for i in range(10 ** 5 + 1, 10 ** 6): if table[i]: primes.append(i) if len(primes) == 10: break ans = [] for i in primes: for j in primes: ans.append(i * j) ans = sorted(ans) print(ans[n - 1])