結果

問題 No.1058 素敵な数
ユーザー rlangevinrlangevin
提出日時 2023-01-02 18:10:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 425 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 87,148 KB
実行使用メモリ 76,772 KB
最終ジャッジ日時 2023-08-17 23:45:58
合計ジャッジ時間 1,812 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
76,240 KB
testcase_01 AC 81 ms
76,472 KB
testcase_02 AC 78 ms
76,288 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

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:
        L.append(i * j)
L.sort()
print(L[N - 1])
0