結果

問題 No.14 最小公倍数ソート
ユーザー dangodango
提出日時 2023-07-08 09:54:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 1,531 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 78,760 KB
最終ジャッジ日時 2024-07-22 05:46:24
合計ジャッジ時間 2,922 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,536 KB
testcase_01 AC 40 ms
53,588 KB
testcase_02 AC 40 ms
53,972 KB
testcase_03 AC 98 ms
77,916 KB
testcase_04 AC 117 ms
78,532 KB
testcase_05 AC 104 ms
78,352 KB
testcase_06 AC 108 ms
78,372 KB
testcase_07 AC 105 ms
78,248 KB
testcase_08 AC 107 ms
78,616 KB
testcase_09 AC 116 ms
78,324 KB
testcase_10 AC 109 ms
78,508 KB
testcase_11 AC 114 ms
78,580 KB
testcase_12 AC 112 ms
78,760 KB
testcase_13 AC 106 ms
78,024 KB
testcase_14 AC 113 ms
78,320 KB
testcase_15 AC 122 ms
78,496 KB
testcase_16 AC 106 ms
78,064 KB
testcase_17 AC 110 ms
78,152 KB
testcase_18 AC 101 ms
77,752 KB
testcase_19 AC 108 ms
78,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def readint():
    x = 0
    ch = sys.stdin.read(1)
    while '0' <= ch <= '9':
        x = x * 10 + int(ch)
        ch = sys.stdin.read(1)
    return x
def writeint(x):
    buf = []
    while x != 0:
        buf.append(x % 10)
        x //= 10
    while len(buf) != 0:
        sys.stdout.write(str(buf.pop()))
N = readint()
LIMIT = 0
A = [0] * 10240
cnt = [0] * 10240
divpos = [0] * 10240
divsep = [0] * 10240
divs = [0] * 94208
canuse = [False] * 10240
for i in range(N):
    A[i] = readint()
    if LIMIT < A[i]:
        LIMIT = A[i]
for i in range(1, N):
    cnt[A[i]] += 1
for i in range(1, LIMIT + 1):
    for j in range(i, LIMIT + 1, i):
        divsep[j + 2] += 1
for i in range(1, LIMIT + 1):
    divsep[i + 2] += divsep[i + 1]
for i in range(1, LIMIT + 1):
    for j in range(i, LIMIT + 1, i):
        divs[divsep[j + 1]] = i
        divsep[j + 1] += 1
preval = A[0]
for i in range(1, N):
    canuse[A[i]] = True
writeint(A[0])
while True:
    optval = -1
    optlcm = (1 << 30)
    for i in range(divsep[preval], divsep[preval + 1]):
        x = divs[i]
        while divpos[x] <= LIMIT and not canuse[divpos[x]]:
            divpos[x] += x
        if divpos[x] <= LIMIT:
            curlcm = preval // x * divpos[x]
            if optlcm > curlcm:
                optlcm = curlcm
                optval = divpos[x]
    if optval == -1:
        break
    for i in range(cnt[optval]):
        sys.stdout.write(' ')
        writeint(optval)
    canuse[optval] = False
    preval = optval
sys.stdout.write('\n')
0