結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー rlangevinrlangevin
提出日時 2023-05-01 12:05:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 824 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 152,616 KB
最終ジャッジ日時 2024-11-20 11:43:29
合計ジャッジ時間 4,488 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,620 KB
testcase_01 AC 37 ms
52,684 KB
testcase_02 AC 36 ms
52,264 KB
testcase_03 AC 35 ms
52,884 KB
testcase_04 AC 35 ms
52,528 KB
testcase_05 AC 35 ms
52,212 KB
testcase_06 AC 35 ms
53,280 KB
testcase_07 AC 36 ms
51,936 KB
testcase_08 AC 36 ms
52,412 KB
testcase_09 AC 35 ms
52,452 KB
testcase_10 AC 36 ms
53,176 KB
testcase_11 AC 34 ms
52,860 KB
testcase_12 AC 34 ms
53,856 KB
testcase_13 AC 36 ms
53,312 KB
testcase_14 AC 36 ms
53,544 KB
testcase_15 AC 36 ms
53,160 KB
testcase_16 AC 181 ms
152,616 KB
testcase_17 AC 169 ms
122,232 KB
testcase_18 AC 161 ms
140,584 KB
testcase_19 AC 158 ms
140,588 KB
testcase_20 AC 135 ms
118,056 KB
testcase_21 AC 141 ms
121,228 KB
testcase_22 AC 146 ms
121,568 KB
testcase_23 AC 76 ms
108,672 KB
testcase_24 AC 162 ms
137,460 KB
testcase_25 AC 112 ms
124,544 KB
testcase_26 AC 149 ms
134,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = input().split()
N = int(N)
cnt = [0] + list(map(int, input().split()))
K = list(map(int, K))
ans = []
if N > len(K):
    for i in range(1, 10):
        ans.extend([i] * cnt[i])
    print(*ans, sep="")
    exit()
elif N < len(K):
    print(-1)
    exit()

for i in range(N):
    if cnt[K[i]]:
        ans.append(K[i])
        cnt[K[i]] -= 1
    else:
        break

for i in range(len(ans), -1, -1):
    if i == N:
        cnt[ans.pop()] += 1
    else:
        for j in range(K[i] + 1, 10):
            if cnt[j]:
                ans.append(j)
                cnt[j] -= 1
                for k in range(1, 10):
                    ans.extend([k] * cnt[k])
                print(*ans, sep="")
                exit()
        if ans:
            cnt[ans.pop()] += 1
        else:
            print(-1)
            exit()
0