結果

問題 No.14 最小公倍数ソート
ユーザー lam6er
提出日時 2025-04-16 01:07:44
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 316 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 81,780 KB
実行使用メモリ 229,208 KB
最終ジャッジ日時 2025-04-16 01:09:34
合計ジャッジ時間 7,503 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4 TLE * 1 -- * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n = int(input())
a = list(map(int, input().split()))

for i in range(n - 1):
    current = a[i]
    sub = a[i + 1:]
    # Sort the subarray based on LCM with current and then the value
    sub.sort(key=lambda x: (current * x // math.gcd(current, x), x))
    a[i + 1:] = sub

print(' '.join(map(str, a)))
0