結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー ThetaTheta
提出日時 2024-04-16 19:39:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,034 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 144,116 KB
最終ジャッジ日時 2024-10-07 21:19:04
合計ジャッジ時間 4,618 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,880 KB
testcase_01 AC 37 ms
53,664 KB
testcase_02 AC 37 ms
54,252 KB
testcase_03 AC 37 ms
55,196 KB
testcase_04 AC 36 ms
53,880 KB
testcase_05 AC 36 ms
54,876 KB
testcase_06 AC 41 ms
54,864 KB
testcase_07 AC 36 ms
54,260 KB
testcase_08 AC 36 ms
55,456 KB
testcase_09 AC 35 ms
54,864 KB
testcase_10 AC 37 ms
55,052 KB
testcase_11 AC 37 ms
53,864 KB
testcase_12 AC 39 ms
55,136 KB
testcase_13 AC 37 ms
54,088 KB
testcase_14 AC 37 ms
54,496 KB
testcase_15 AC 37 ms
55,876 KB
testcase_16 AC 235 ms
128,736 KB
testcase_17 AC 274 ms
137,984 KB
testcase_18 AC 144 ms
128,848 KB
testcase_19 AC 150 ms
129,016 KB
testcase_20 AC 265 ms
144,116 KB
testcase_21 AC 269 ms
140,132 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 276 ms
122,052 KB
testcase_25 AC 284 ms
128,872 KB
testcase_26 AC 143 ms
128,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
import sys
sys.setrecursionlimit(600000)


def main():
    N, K = input().split()
    N = int(N)
    K = list(map(int, K))
    c = list(map(int, input().split()))

    ctr = Counter(dict(enumerate(c, 1)))
    ctr.subtract(K)

    for idx, digit in reversed(list(enumerate(K))):
        ctr[digit] += 1
        if any(ctr_elm < 0 for ctr_elm in ctr.values()):
            continue
        min_over_n = -1
        for n in range(10):
            if n <= digit:
                continue
            if ctr[n] > 0:
                min_over_n = n
                break
        else:
            continue

        ans = K[:idx]
        ans.append(min_over_n)
        for n in range(10):
            if n == min_over_n:
                for _ in range(ctr[n] - 1):
                    ans.append(n)
            else:
                for _ in range(ctr[n]):
                    ans.append(n)
        print("".join(map(str, ans)))
        return
    print(-1)
    return


if __name__ == "__main__":
    main()
0