結果
| 問題 | No.14 最小公倍数ソート |
| コンテスト | |
| ユーザー |
sasa8uyauya
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 19 WA * 1 |
ソースコード
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)
sasa8uyauya