結果
問題 |
No.1058 素敵な数
|
ユーザー |
![]() |
提出日時 | 2023-01-02 18:08:45 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 352 bytes |
コンパイル時間 | 214 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 59,264 KB |
最終ジャッジ日時 | 2024-11-27 01:11:03 |
合計ジャッジ時間 | 1,084 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | WA * 9 |
ソースコード
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])