結果

問題 No.1058 素敵な数
ユーザー hir355hir355
提出日時 2020-05-22 21:32:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 600 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,564 KB
最終ジャッジ日時 2024-10-05 15:34:41
合計ジャッジ時間 1,938 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 130 ms
11,436 KB
testcase_02 AC 129 ms
11,392 KB
testcase_03 AC 128 ms
11,564 KB
testcase_04 AC 128 ms
11,436 KB
testcase_05 AC 134 ms
11,432 KB
testcase_06 AC 132 ms
11,556 KB
testcase_07 AC 132 ms
11,428 KB
testcase_08 AC 129 ms
11,560 KB
testcase_09 AC 129 ms
11,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def primes(n):
    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(i * 2, n + 1, i):
            is_prime[j] = False
    for i in range(2, 10 ** 5 + 1):
        is_prime[i] = False
    return [i for i in range(n + 1) if is_prime[i]]


n = int(input())
if n == 1:
    print(1)
else:
    l = []
    for p in primes(10 ** 5 + 100):
        for p2 in primes(10 ** 5 + 100):
            if p <= p2:
                l.append(p * p2)
    l.sort()
    print(l[n - 2])
0