結果
問題 | No.1058 素敵な数 |
ユーザー | rlangevin |
提出日時 | 2023-01-02 18:08:45 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 352 bytes |
コンパイル時間 | 295 ms |
コンパイル使用メモリ | 82,816 KB |
実行使用メモリ | 59,520 KB |
最終ジャッジ日時 | 2024-05-05 06:34:26 |
合計ジャッジ時間 | 1,324 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
59,392 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 | - |
ソースコード
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])