結果

問題 No.14 最小公倍数ソート
ユーザー dangodango
提出日時 2023-07-08 09:50:01
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 437 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 73,856 KB
最終ジャッジ日時 2024-07-22 05:44:18
合計ジャッジ時間 59,268 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,132 KB
testcase_01 AC 45 ms
52,364 KB
testcase_02 AC 39 ms
53,696 KB
testcase_03 AC 109 ms
64,032 KB
testcase_04 TLE -
testcase_05 AC 1,891 ms
70,356 KB
testcase_06 AC 2,195 ms
71,056 KB
testcase_07 AC 2,791 ms
71,812 KB
testcase_08 AC 3,605 ms
72,792 KB
testcase_09 AC 4,878 ms
73,280 KB
testcase_10 AC 4,759 ms
72,588 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 4,904 ms
73,856 KB
testcase_15 TLE -
testcase_16 AC 1,929 ms
71,084 KB
testcase_17 AC 1,407 ms
70,644 KB
testcase_18 AC 650 ms
70,364 KB
testcase_19 AC 3,248 ms
72,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
def lcm(a, b):
    return a * b // math.gcd(a, b)
N = int(input())
A = list(map(int, input().split()))
for i in range(N - 2):
    minlcm = lcm(A[i], A[i + 1])
    index = i + 1
    for j in range(i + 2, N):
        l = lcm(A[i], A[j])
        if l < minlcm:
            minlcm = l
            index = j
        elif l == minlcm and A[index] > A[j]:
            index = j
    A[i + 1], A[index] = A[index], A[i + 1]
print(*A)
0