結果

問題 No.14 最小公倍数ソート
ユーザー gew1fw
提出日時 2025-06-12 20:46:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 423 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 227,684 KB
最終ジャッジ日時 2025-06-12 20:46:28
合計ジャッジ時間 7,062 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4 TLE * 1 -- * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def main():
    import sys
    input = sys.stdin.read().split()
    n = int(input[0])
    arr = list(map(int, input[1:n+1]))
    
    def lcm(a, b):
        return a * b // math.gcd(a, b)
    
    for i in range(n-1):
        x = arr[i]
        sub = arr[i+1:]
        sub.sort(key=lambda y: (lcm(x, y), y))
        arr[i+1:] = sub
    
    print(' '.join(map(str, arr)))

if __name__ == "__main__":
    main()
0