結果

問題 No.14 最小公倍数ソート
ユーザー szkhtsszkhts
提出日時 2021-01-31 09:49:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 293 ms / 5,000 ms
コード長 797 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,120 KB
最終ジャッジ日時 2024-06-28 19:11:58
合計ジャッジ時間 5,096 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
13,184 KB
testcase_01 AC 54 ms
13,056 KB
testcase_02 AC 52 ms
13,312 KB
testcase_03 AC 72 ms
14,080 KB
testcase_04 AC 292 ms
21,120 KB
testcase_05 AC 187 ms
17,664 KB
testcase_06 AC 189 ms
18,048 KB
testcase_07 AC 220 ms
18,944 KB
testcase_08 AC 252 ms
19,712 KB
testcase_09 AC 265 ms
20,736 KB
testcase_10 AC 273 ms
20,608 KB
testcase_11 AC 293 ms
20,736 KB
testcase_12 AC 283 ms
20,864 KB
testcase_13 AC 281 ms
20,736 KB
testcase_14 AC 287 ms
20,864 KB
testcase_15 AC 289 ms
20,992 KB
testcase_16 AC 186 ms
17,792 KB
testcase_17 AC 164 ms
17,280 KB
testcase_18 AC 129 ms
16,000 KB
testcase_19 AC 233 ms
19,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a, b):
    if b == 0:
        return a
    else:
        return gcd(b, a % b)

u = 10 ** 4
dv = [[] for i in range(u + 1)]
ds = [[] for i in range(u + 1)]
for i in range(1, u + 1):
  for j in range(i, u + 1, i):
    dv[j].append(i)

n = int(input())
a = list(map(int, input().split()))
for i, x in enumerate(a):
  for d in dv[x]:
    ds[d].append((x, i))
for e in ds:
  e.sort()
  e.reverse()

mark = [0] * n
ret, last = [a[0]], 0
for i in range(n - 1):
  mark[last] = 1
  r, x = 1 << 30, -1
  for d in dv[a[last]]:
    while len(ds[d]) and mark[ds[d][-1][1]]:
      ds[d].pop(-1)
    if not len(ds[d]):
      continue
    y = ds[d][-1][1]
    t = a[y] * a[last] / gcd(a[y], a[last])
    if t < r or (t == r and a[y] < a[x]):
      r, x = t, y
  last = x
  ret.append(a[x])
  
print(*ret)
0