結果

問題 No.14 最小公倍数ソート
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-21 14:39:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 301 ms / 5,000 ms
コード長 727 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 84,832 KB
最終ジャッジ日時 2024-10-21 14:39:47
合計ジャッジ時間 6,010 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
67,996 KB
testcase_01 AC 65 ms
68,148 KB
testcase_02 AC 64 ms
68,536 KB
testcase_03 AC 162 ms
79,712 KB
testcase_04 AC 261 ms
84,324 KB
testcase_05 AC 230 ms
82,780 KB
testcase_06 AC 263 ms
83,188 KB
testcase_07 AC 250 ms
83,324 KB
testcase_08 AC 249 ms
83,568 KB
testcase_09 AC 258 ms
83,872 KB
testcase_10 AC 258 ms
84,008 KB
testcase_11 AC 280 ms
84,188 KB
testcase_12 AC 269 ms
84,340 KB
testcase_13 AC 301 ms
84,764 KB
testcase_14 AC 266 ms
84,328 KB
testcase_15 AC 291 ms
84,832 KB
testcase_16 AC 252 ms
83,140 KB
testcase_17 AC 232 ms
82,628 KB
testcase_18 AC 191 ms
81,356 KB
testcase_19 AC 239 ms
83,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
sa=[]
sa+=[a[0]]
sa+=[1]*a[1:].count(1)
a=[a[i] for i in range(1,n) if a[i]!=1]
a.sort()
if sa[-1]==1:
  sa+=[a[0]]
  a=a[1:]
n=len(a)
L=10000
f=[[] for i in range(L+1)]
for i in range(1,L+1):
  j=1
  while j*j<=i:
    if i%j==0:
      f[i]+=[j]
      if j<i//j:
        f[i]+=[i//j]
    j+=1
u=[0]*n
from heapq import heappush,heappop
q=[[] for i in range(L+1)]
for i in range(n):
  for j in f[a[i]]:
    heappush(q[j],(a[i],i))
for _ in range(n):
  b=(10**10,10**10,10**10)
  for j in f[sa[-1]]:
    while len(q[j])>0 and u[q[j][0][1]]:
      heappop(q[j])
    if len(q[j])>0:
      p1,p2=q[j][0]
      b=min(b,(sa[-1]*p1//j,a[p2],p2))
  c=b[2]
  sa+=[a[c]]
  u[c]=1
print(*sa)
0