結果

問題 No.14 最小公倍数ソート
ユーザー Mao-betaMao-beta
提出日時 2024-02-29 01:14:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,819 ms / 5,000 ms
コード長 1,062 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,664 KB
実行使用メモリ 78,116 KB
最終ジャッジ日時 2024-09-29 12:30:06
合計ジャッジ時間 54,186 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,664 KB
testcase_01 AC 40 ms
56,952 KB
testcase_02 AC 42 ms
57,184 KB
testcase_03 AC 106 ms
66,960 KB
testcase_04 AC 4,819 ms
77,980 KB
testcase_05 AC 1,677 ms
74,752 KB
testcase_06 AC 1,934 ms
74,672 KB
testcase_07 AC 2,493 ms
74,708 KB
testcase_08 AC 3,282 ms
76,760 KB
testcase_09 AC 4,385 ms
76,864 KB
testcase_10 AC 4,331 ms
76,976 KB
testcase_11 AC 4,500 ms
77,436 KB
testcase_12 AC 4,654 ms
77,568 KB
testcase_13 AC 4,670 ms
77,876 KB
testcase_14 AC 4,624 ms
78,116 KB
testcase_15 AC 4,679 ms
77,928 KB
testcase_16 AC 1,783 ms
73,724 KB
testcase_17 AC 1,298 ms
74,012 KB
testcase_18 AC 610 ms
72,136 KB
testcase_19 AC 2,941 ms
76,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import bisect
from heapq import heapify, heappop, heappush
from collections import deque, defaultdict, Counter
from functools import lru_cache
from itertools import accumulate, combinations, permutations, product

sys.setrecursionlimit(1000000)
MOD = 10 ** 9 + 7
MOD99 = 998244353

input = lambda: sys.stdin.readline().strip()
NI = lambda: int(input())
NMI = lambda: map(int, input().split())
NLI = lambda: list(NMI())
SI = lambda: input()
SMI = lambda: input().split()
SLI = lambda: list(SMI())
EI = lambda m: [NLI() for _ in range(m)]


def main():
    N = NI()
    A = NLI()
    for i in range(N-1):
        L = 10**10
        nj = N-1
        na = 10**10
        for j in range(N-1, i, -1):
            l = A[i] * A[j] // math.gcd(A[i], A[j])
            if l < L:
                L = l
                nj = j
                na = A[j]
            elif l == L and A[j] < na:
                nj = j
                na = A[j]
        A[i+1], A[nj] = A[nj], A[i+1]
        # print(A)
    print(*A)


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