結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー 👑 rin204rin204
提出日時 2021-07-30 20:49:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 1,480 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 117,928 KB
最終ジャッジ日時 2024-09-15 22:41:05
合計ジャッジ時間 3,360 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 42 ms
51,840 KB
testcase_05 AC 42 ms
51,840 KB
testcase_06 AC 42 ms
51,712 KB
testcase_07 AC 42 ms
51,840 KB
testcase_08 AC 42 ms
51,584 KB
testcase_09 AC 41 ms
52,096 KB
testcase_10 AC 42 ms
52,096 KB
testcase_11 AC 42 ms
52,352 KB
testcase_12 AC 42 ms
52,352 KB
testcase_13 AC 42 ms
51,968 KB
testcase_14 AC 42 ms
51,968 KB
testcase_15 AC 41 ms
52,352 KB
testcase_16 AC 173 ms
117,928 KB
testcase_17 AC 178 ms
114,840 KB
testcase_18 AC 135 ms
113,500 KB
testcase_19 AC 135 ms
113,488 KB
testcase_20 AC 77 ms
77,824 KB
testcase_21 AC 79 ms
81,920 KB
testcase_22 AC 80 ms
82,688 KB
testcase_23 AC 46 ms
54,784 KB
testcase_24 AC 169 ms
115,088 KB
testcase_25 AC 142 ms
113,236 KB
testcase_26 AC 134 ms
113,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, K = input().split()
n = int(n)
if len(K) > n:
    print(-1)
    exit()
K = K.zfill(n)
cnt = [0] + list(map(int, input().split()))
ans = []
ok = False
for k in K:
    k = int(k)
    if cnt[k] > 0:
        ans.append(str(k))
        cnt[k] -= 1
        continue
    flg = False
    for i in range(k + 1, 10):
        if cnt[i] > 0:
            flg = True
            ans.append(str(i))
            cnt[i] -= 1
            ok = True
            break
    if flg:
        for i, c in enumerate(cnt):
            ans += [str(i)] * c
        ok = True
        break
    while ans:
        p = int(ans.pop())
        cnt[p] += 1
        flg = False
        for i in range(p + 1, 10):
            if cnt[i] > 0:
                flg = True
                ans.append(str(i))
                cnt[i] -= 1
                break
        if flg:
            break
    if ans:
        for i, c in enumerate(cnt):
            ans += [str(i)] * c
        ok = True
        break
    else:
        print(-1)
        exit()
if ok:
    print("".join(ans))
else:
    while ans:
        p = int(ans.pop())
        cnt[p] += 1
        flg = False
        for i in range(p + 1, 10):
            if cnt[i] > 0:
                flg = True
                ans.append(str(i))
                cnt[i] -= 1
                break
        if flg:
            break
    if ans:
        for i, c in enumerate(cnt):
            ans += [str(i)] * c
        print("".join(ans))
    else:
        print(-1)
        
0