結果
問題 | No.1058 素敵な数 |
ユーザー | lloyz |
提出日時 | 2022-03-02 00:14:18 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 396 bytes |
コンパイル時間 | 157 ms |
コンパイル使用メモリ | 82,120 KB |
実行使用メモリ | 73,436 KB |
最終ジャッジ日時 | 2024-07-08 07:27:57 |
合計ジャッジ時間 | 1,410 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
51,840 KB |
testcase_01 | AC | 76 ms
71,552 KB |
testcase_02 | WA | - |
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() n -= 1 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 for i in range(10**5 + 1, 10**6 + 1): if IsPrime[i]: n -= 1 if n == 0: print(i * i) break