結果

問題 No.1351 Sum of GCD Equals LCM
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-17 13:41:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 533 ms
コンパイル使用メモリ 86,792 KB
実行使用メモリ 76,036 KB
最終ジャッジ日時 2023-08-19 19:27:52
合計ジャッジ時間 6,983 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
75,860 KB
testcase_01 AC 65 ms
75,688 KB
testcase_02 AC 66 ms
75,896 KB
testcase_03 AC 63 ms
75,736 KB
testcase_04 AC 73 ms
75,568 KB
testcase_05 AC 65 ms
76,024 KB
testcase_06 AC 66 ms
75,772 KB
testcase_07 AC 65 ms
75,740 KB
testcase_08 AC 67 ms
76,032 KB
testcase_09 AC 69 ms
75,884 KB
testcase_10 AC 69 ms
75,812 KB
testcase_11 AC 65 ms
75,564 KB
testcase_12 AC 65 ms
75,880 KB
testcase_13 AC 66 ms
75,740 KB
testcase_14 AC 67 ms
75,800 KB
testcase_15 AC 66 ms
75,612 KB
testcase_16 AC 66 ms
75,720 KB
testcase_17 AC 65 ms
75,768 KB
testcase_18 AC 64 ms
75,664 KB
testcase_19 AC 68 ms
75,944 KB
testcase_20 AC 66 ms
75,604 KB
testcase_21 AC 67 ms
76,020 KB
testcase_22 AC 68 ms
75,792 KB
testcase_23 AC 66 ms
75,716 KB
testcase_24 AC 65 ms
75,668 KB
testcase_25 AC 65 ms
75,844 KB
testcase_26 AC 64 ms
75,604 KB
testcase_27 AC 64 ms
76,028 KB
testcase_28 AC 65 ms
75,612 KB
testcase_29 AC 69 ms
75,676 KB
testcase_30 AC 66 ms
75,608 KB
testcase_31 AC 65 ms
75,864 KB
testcase_32 AC 66 ms
76,012 KB
testcase_33 AC 65 ms
75,612 KB
testcase_34 AC 64 ms
75,796 KB
testcase_35 AC 64 ms
75,844 KB
testcase_36 AC 63 ms
75,772 KB
testcase_37 AC 66 ms
75,588 KB
testcase_38 AC 68 ms
75,768 KB
testcase_39 AC 70 ms
75,976 KB
testcase_40 AC 66 ms
75,604 KB
testcase_41 AC 68 ms
75,800 KB
testcase_42 AC 71 ms
75,604 KB
testcase_43 AC 76 ms
75,700 KB
testcase_44 AC 67 ms
75,720 KB
testcase_45 AC 65 ms
76,036 KB
testcase_46 AC 65 ms
75,596 KB
testcase_47 AC 66 ms
75,608 KB
testcase_48 AC 66 ms
75,700 KB
testcase_49 AC 69 ms
75,796 KB
testcase_50 AC 67 ms
75,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

X = 2 ** 5 * 3 ** 4 * 5
div = []
for i in reversed(range(1, X + 1)):
    if X % i == 0:
        div.append(i)
    if len(div) >= N:
        break

print(" ".join(map(str, div)))
0