結果

問題 No.1058 素敵な数
ユーザー rlangevinrlangevin
提出日時 2023-01-02 18:13:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 59,392 KB
最終ジャッジ日時 2024-05-05 06:34:34
合計ジャッジ時間 1,165 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
59,392 KB
testcase_01 AC 46 ms
59,392 KB
testcase_02 AC 44 ms
59,008 KB
testcase_03 AC 45 ms
59,008 KB
testcase_04 AC 44 ms
59,136 KB
testcase_05 AC 45 ms
59,392 KB
testcase_06 AC 43 ms
59,008 KB
testcase_07 AC 45 ms
59,136 KB
testcase_08 AC 43 ms
59,136 KB
testcase_09 AC 47 ms
59,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import *

def Sieve(n):
    lst = [True] * (n + 1)
    S = []
    for i in range(2, ceil(sqrt(n)) + 1):
        if lst[i]:
            for j in range(2 * i, n + 1, i):
                lst[j] = False
    for i in range(100000, n + 1):
        if lst[i]:
            S.append(i)
    return S

N = int(input())
S = Sieve(105050)[:10]
L = [1]
for i in S:
    for j in S:
        if i > j:
            continue
        L.append(i * j)
L.sort()
print(L[N - 1])
0