結果
問題 | No.14 最小公倍数ソート |
ユーザー | zimpha |
提出日時 | 2017-12-07 21:51:51 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 733 bytes |
コンパイル時間 | 266 ms |
コンパイル使用メモリ | 82,368 KB |
実行使用メモリ | 89,088 KB |
最終ジャッジ日時 | 2024-05-06 19:33:38 |
合計ジャッジ時間 | 3,847 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
ソースコード
from fractions import gcd 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)