結果
問題 | No.1058 素敵な数 |
ユーザー | mlihua09 |
提出日時 | 2020-09-01 13:25:00 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 228 bytes |
コンパイル時間 | 141 ms |
コンパイル使用メモリ | 82,344 KB |
実行使用メモリ | 67,404 KB |
最終ジャッジ日時 | 2024-11-18 15:34:51 |
合計ジャッジ時間 | 1,229 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
ソースコード
X = [100003, 100019, 100043, 100049, 100057, 100069, 100103, 100109, 100129] x = [] for i in range(9): for j in range(i + 1): x += [X[i] * X[j]] x.sort() if N == 1: print(1) else: print(x[N - 2])