結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー 👑 rin204rin204
提出日時 2021-07-30 20:47:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 920 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 117,848 KB
最終ジャッジ日時 2024-09-15 22:40:14
合計ジャッジ時間 3,288 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 WA -
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 41 ms
51,328 KB
testcase_04 AC 41 ms
51,328 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 40 ms
51,712 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 40 ms
51,840 KB
testcase_13 AC 39 ms
52,224 KB
testcase_14 AC 40 ms
51,456 KB
testcase_15 AC 41 ms
51,968 KB
testcase_16 AC 169 ms
117,848 KB
testcase_17 AC 178 ms
115,100 KB
testcase_18 AC 133 ms
113,540 KB
testcase_19 AC 133 ms
113,540 KB
testcase_20 AC 75 ms
77,312 KB
testcase_21 AC 79 ms
81,920 KB
testcase_22 AC 80 ms
82,944 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 132 ms
113,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, K = input().split()
n = int(n)
K = K.zfill(n)
cnt = [0] + list(map(int, input().split()))
ans = []
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
            break
    if flg:
        for i, c in enumerate(cnt):
            ans += [str(i)] * c
        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
        break
    else:
        print(-1)
        exit()
print("".join(ans))

0