結果
問題 | No.1058 素敵な数 |
ユーザー | TakoKurage |
提出日時 | 2020-05-23 04:27:57 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 243 ms / 2,000 ms |
コード長 | 467 bytes |
コンパイル時間 | 199 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 21,400 KB |
最終ジャッジ日時 | 2024-10-06 12:42:54 |
合計ジャッジ時間 | 3,625 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 236 ms
21,400 KB |
testcase_01 | AC | 241 ms
21,256 KB |
testcase_02 | AC | 243 ms
21,336 KB |
testcase_03 | AC | 232 ms
21,324 KB |
testcase_04 | AC | 233 ms
21,368 KB |
testcase_05 | AC | 231 ms
21,192 KB |
testcase_06 | AC | 233 ms
21,300 KB |
testcase_07 | AC | 236 ms
21,368 KB |
testcase_08 | AC | 235 ms
21,252 KB |
testcase_09 | AC | 240 ms
21,184 KB |
ソースコード
def primes(n): memo = [True] * (n + 1) i = 2 while i * i <= n: if memo[i]: j = i << 1 while j <= n: memo[j] = False j += i i += 1 return [i for i in range(n + 1) if memo[i] and i >= 10 ** 5 + 1] from itertools import combinations_with_replacement N = int(input()) P = primes(10 ** 6)[:N] A = [1] + sorted(x * y for x, y in combinations_with_replacement(P, 2)) print(A[N - 1])