結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
76,216 KB
testcase_01 WA -
testcase_02 WA -
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 = [1]
    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)
print(S[N - 1])
0