結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー KudeKude
提出日時 2021-07-30 20:58:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 1,044 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 139,108 KB
最終ジャッジ日時 2024-09-15 22:48:11
合計ジャッジ時間 3,684 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 43 ms
51,968 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 40 ms
51,712 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 42 ms
51,840 KB
testcase_09 AC 40 ms
51,968 KB
testcase_10 AC 41 ms
51,712 KB
testcase_11 AC 41 ms
52,096 KB
testcase_12 AC 41 ms
52,224 KB
testcase_13 AC 41 ms
52,096 KB
testcase_14 AC 41 ms
52,096 KB
testcase_15 AC 41 ms
52,224 KB
testcase_16 AC 194 ms
123,364 KB
testcase_17 AC 194 ms
123,492 KB
testcase_18 AC 170 ms
138,856 KB
testcase_19 AC 171 ms
139,108 KB
testcase_20 AC 139 ms
122,728 KB
testcase_21 AC 140 ms
124,764 KB
testcase_22 AC 139 ms
124,520 KB
testcase_23 AC 96 ms
104,704 KB
testcase_24 AC 157 ms
113,364 KB
testcase_25 AC 138 ms
127,076 KB
testcase_26 AC 141 ms
124,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n_, k_ = input().split()
n = int(n_)
k = list(map(int, k_))
c = [0] + list(map(int, input().split()))
if n < len(k):
    print(-1)
    exit()

def fill_rest(s, c):
    for i, cnt in enumerate(c):
        for _ in range(cnt):
            s.append(str(i))
    return

s = []
if n > len(k):
    fill_rest(s, c)
    ans = ''.join(map(str, s))
    print(ans)
    exit()


def dame(i):
    while i:
        i -= 1
        c[s.pop()] += 1
        x = k[i]
        for d in range(x + 1, 10):
            if c[d]:
                s.append(d)
                c[d] -= 1
                fill_rest(s, c)
                ans = ''.join(map(str, s))
                print(ans)
                exit(0)
    print(-1)
    exit()

for i in range(n):
    x = k[i]
    if c[x]:
        s.append(x)
        c[x] -= 1
        continue
    for d in range(x + 1, 10):
        if c[d]:
            s.append(d)
            c[d] -= 1
            fill_rest(s, c)
            ans = ''.join(map(str, s))
            print(ans)
            exit(0)
    dame(i)
else:
    dame(n)
0