結果

問題 No.14 最小公倍数ソート
ユーザー Mao-betaMao-beta
提出日時 2024-02-29 01:09:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,064 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 78,108 KB
最終ジャッジ日時 2024-09-29 12:29:02
合計ジャッジ時間 52,834 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
56,020 KB
testcase_01 AC 46 ms
57,532 KB
testcase_02 AC 46 ms
56,600 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = 10**10
            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