結果
問題 | No.1058 素敵な数 |
ユーザー | lloyz |
提出日時 | 2022-03-02 00:15:41 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 450 bytes |
コンパイル時間 | 1,193 ms |
コンパイル使用メモリ | 81,952 KB |
実行使用メモリ | 73,852 KB |
最終ジャッジ日時 | 2024-07-08 07:29:47 |
合計ジャッジ時間 | 1,824 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
51,328 KB |
testcase_01 | AC | 86 ms
71,424 KB |
testcase_02 | AC | 82 ms
71,808 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
n = int(input()) if n == 1: print(1) exit() IsPrime = [True for _ in range(10**6 + 1)] IsPrime[0] = IsPrime[1] = False for i in range(2, 10**6 + 1): if IsPrime[i]: for j in range(i + i, 10**6 + 1, i): IsPrime[j] = False rank = 1 for i in range(10**5 + 1, 10**6 + 1): if IsPrime[i]: rank += 1 if rank == 2: prev = i if rank == n: print(i * prev) break