結果

問題 No.14 最小公倍数ソート
ユーザー ctyl_0ctyl_0
提出日時 2015-12-05 02:47:59
言語 Python2
(2.7.18)
結果
AC  
実行時間 590 ms / 5,000 ms
コード長 956 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 21,948 KB
最終ジャッジ日時 2024-09-14 14:16:19
合計ジャッジ時間 8,281 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
6,912 KB
testcase_01 AC 16 ms
7,168 KB
testcase_02 AC 15 ms
7,040 KB
testcase_03 AC 64 ms
8,448 KB
testcase_04 AC 590 ms
21,948 KB
testcase_05 AC 298 ms
15,456 KB
testcase_06 AC 339 ms
16,368 KB
testcase_07 AC 395 ms
17,808 KB
testcase_08 AC 475 ms
19,264 KB
testcase_09 AC 550 ms
21,100 KB
testcase_10 AC 549 ms
20,976 KB
testcase_11 AC 573 ms
21,368 KB
testcase_12 AC 576 ms
21,624 KB
testcase_13 AC 577 ms
21,632 KB
testcase_14 AC 561 ms
21,368 KB
testcase_15 AC 579 ms
21,760 KB
testcase_16 AC 341 ms
16,104 KB
testcase_17 AC 282 ms
14,720 KB
testcase_18 AC 188 ms
12,160 KB
testcase_19 AC 452 ms
18,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-

inf = 1e9

def gcd(p, q):
    if q == 0:
        return p
    return gcd(q, p % q)
    
def lcm(p, q):
    return p / gcd(p, q) * q

N = input()
A = map(int, raw_input().split())

S = [[] for i in xrange(10001)]
div = [[] for i in xrange(N)]

for i in xrange(N):
    j = 1
    while j * j <= A[i]:
        if A[i] % j == 0:
            div[i].append(j)
            S[j].append([A[i], i])
            if j * j != A[i]:
                div[i].append(A[i] / j)
                S[A[i] / j].append([A[i], i])
        j += 1

for i in xrange(len(S)):
    S[i].sort()
    
vis = [0] * N
ans = [A[0]]
ind = 0

for i in xrange(N - 1):
    num = ans[i]
    vis[ind] = 1
    m = (inf, 0, 0)
    for j in div[ind]:
        while len(S[j]) and vis[S[j][0][1]]:
            S[j].pop(0)
        if len(S[j]):
            m = min(m, (lcm(num, S[j][0][0]), S[j][0][0], S[j][0][1]))
    ans.append(m[1])
    ind = m[2]

print " ".join(map(str, ans))
0