結果
問題 | No.1058 素敵な数 |
ユーザー | now4est |
提出日時 | 2020-05-22 21:46:37 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 449 bytes |
コンパイル時間 | 325 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 52,480 KB |
最終ジャッジ日時 | 2024-10-05 16:41:29 |
合計ジャッジ時間 | 1,279 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
51,840 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 | - |
ソースコード
import math def is_prime(n): """ via https://qiita.com/srtk86/items/874639e361917e5016d4 """ if n == 1: return False for k in range(2, int(math.sqrt(n)) + 1): if n % k == 0: return False return True N = int(input()) i = 1 count = 1 while True: if i == 100000: break if not is_prime(i): if count == N: print(i) break count += 1 i += 1