結果

問題 No.1058 素敵な数
ユーザー NoaSaberNoaSaber
提出日時 2021-04-05 21:54:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 550 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 89,480 KB
最終ジャッジ日時 2024-06-10 09:18:44
合計ジャッジ時間 1,735 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
89,088 KB
testcase_01 AC 91 ms
89,424 KB
testcase_02 AC 93 ms
89,216 KB
testcase_03 AC 96 ms
89,136 KB
testcase_04 AC 96 ms
89,128 KB
testcase_05 AC 93 ms
88,960 KB
testcase_06 AC 92 ms
89,480 KB
testcase_07 AC 94 ms
89,280 KB
testcase_08 AC 92 ms
89,232 KB
testcase_09 AC 91 ms
89,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l=[]
N=int(input())
def eratosthenes(n):
    if n==2:
        return [2]
    prime = [2]
    limit = int(n**0.5)
    data = [i + 1 for i in range(2, n, 2)]
    while True:
        p = data[0]
        if limit <= p:
            return prime + data
        prime.append(p)
        data = [e for e in data if e % p != 0]
x=eratosthenes(150000)
ans=[1]
for i in x:
    if i>100000:
        l.append(i)
    if len(l)==10:
        break
for i in range(10):
    for j in range(10):
        ans.append(l[i]*l[j])
ans=list(set(ans))
ans.sort()
print(ans[N-1])
0