結果

問題 No.14 最小公倍数ソート
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-21 14:38:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 723 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 84,800 KB
最終ジャッジ日時 2024-10-21 14:38:38
合計ジャッジ時間 6,286 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 68 ms
67,456 KB
testcase_02 AC 67 ms
68,828 KB
testcase_03 AC 167 ms
79,720 KB
testcase_04 AC 267 ms
84,088 KB
testcase_05 AC 241 ms
82,652 KB
testcase_06 AC 273 ms
83,448 KB
testcase_07 AC 248 ms
83,060 KB
testcase_08 AC 256 ms
83,564 KB
testcase_09 AC 263 ms
83,820 KB
testcase_10 AC 262 ms
83,768 KB
testcase_11 AC 293 ms
84,260 KB
testcase_12 AC 264 ms
84,428 KB
testcase_13 AC 270 ms
84,736 KB
testcase_14 AC 261 ms
83,996 KB
testcase_15 AC 289 ms
84,800 KB
testcase_16 AC 251 ms
83,300 KB
testcase_17 AC 228 ms
82,648 KB
testcase_18 AC 192 ms
80,968 KB
testcase_19 AC 243 ms
83,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
sa=[]
sa+=[a[0]]
sa+=[1]*a.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