結果

問題 No.1058 素敵な数
ユーザー mlihua09mlihua09
提出日時 2020-09-01 13:25:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 53,680 KB
最終ジャッジ日時 2024-11-18 15:36:31
合計ジャッジ時間 1,268 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,304 KB
testcase_01 AC 39 ms
52,264 KB
testcase_02 AC 37 ms
52,068 KB
testcase_03 AC 37 ms
53,484 KB
testcase_04 AC 39 ms
53,680 KB
testcase_05 AC 38 ms
53,196 KB
testcase_06 AC 39 ms
53,280 KB
testcase_07 AC 38 ms
52,732 KB
testcase_08 AC 40 ms
53,152 KB
testcase_09 AC 38 ms
52,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


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()
N = int(input())
if N == 1:
    print(1)
else:
    print(x[N - 2])
0