結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー rlangevinrlangevin
提出日時 2023-05-01 12:05:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 824 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 152,604 KB
最終ジャッジ日時 2024-04-30 15:36:45
合計ジャッジ時間 4,032 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,196 KB
testcase_01 AC 31 ms
53,096 KB
testcase_02 AC 33 ms
52,624 KB
testcase_03 AC 34 ms
53,688 KB
testcase_04 AC 33 ms
52,788 KB
testcase_05 AC 33 ms
52,536 KB
testcase_06 AC 32 ms
52,400 KB
testcase_07 AC 35 ms
52,704 KB
testcase_08 AC 37 ms
52,752 KB
testcase_09 AC 34 ms
52,528 KB
testcase_10 AC 33 ms
52,580 KB
testcase_11 AC 32 ms
52,676 KB
testcase_12 AC 32 ms
53,052 KB
testcase_13 AC 32 ms
52,888 KB
testcase_14 AC 33 ms
54,268 KB
testcase_15 AC 33 ms
53,252 KB
testcase_16 AC 170 ms
152,604 KB
testcase_17 AC 156 ms
122,692 KB
testcase_18 AC 152 ms
140,568 KB
testcase_19 AC 146 ms
140,308 KB
testcase_20 AC 130 ms
117,652 KB
testcase_21 AC 127 ms
122,068 KB
testcase_22 AC 126 ms
121,272 KB
testcase_23 AC 70 ms
108,556 KB
testcase_24 AC 158 ms
137,576 KB
testcase_25 AC 109 ms
124,296 KB
testcase_26 AC 151 ms
134,308 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