結果
問題 | No.1058 素敵な数 |
ユーザー | NatsubiSogan |
提出日時 | 2020-08-28 19:26:51 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 626 bytes |
コンパイル時間 | 127 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-11-13 23:40:12 |
合計ジャッジ時間 | 1,087 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,880 KB |
testcase_01 | AC | 32 ms
10,880 KB |
testcase_02 | AC | 31 ms
10,880 KB |
testcase_03 | AC | 30 ms
10,880 KB |
testcase_04 | AC | 32 ms
10,880 KB |
testcase_05 | AC | 29 ms
10,880 KB |
testcase_06 | AC | 30 ms
10,880 KB |
testcase_07 | AC | 29 ms
10,880 KB |
testcase_08 | WA | - |
testcase_09 | AC | 30 ms
10,880 KB |
ソースコード
import math def is_prime(x): if x < 2: return False if x == 2 or x == 3 or x == 5: return True if x % 2 == 0 or x % 3 == 0 or x % 5 == 0: return False prime_number = 7 difference = 4 while prime_number <= math.sqrt(x): if x % prime_number == 0: return False prime_number += difference difference = 6 - difference return True n = int(input()) l = [] for i in range(10 ** 5, 10 ** 5 + 60): if is_prime(i): l.append(i) ans = [1] for i in l: for j in l: ans.append(i * j) ans = sorted(list(set(ans))) print(ans[n - 1])