結果
問題 | No.1058 素敵な数 |
ユーザー | uw_yu1rabbit |
提出日時 | 2020-08-18 11:04:45 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 451 bytes |
コンパイル時間 | 173 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-10-12 02:28:24 |
合計ジャッジ時間 | 1,059 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,880 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 main(): n = int(input()) a = [1] b = [] for i in range(1000001, 10000000): flg = True for j in (2,math.sqrt(i)): if i % j == 0: flg = False break if flg: b.append(i) if len(b) == 10: break for i in range(len(b)): for j in range(1,10): a.append(b[i] * j) a.sort() print(a[n - 1]) main()