結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー brthyyjpbrthyyjp
提出日時 2022-03-09 10:33:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 801 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 124,676 KB
最終ジャッジ日時 2024-09-13 09:54:19
合計ジャッジ時間 4,131 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,492 KB
testcase_01 AC 41 ms
55,252 KB
testcase_02 AC 42 ms
54,212 KB
testcase_03 AC 41 ms
54,540 KB
testcase_04 AC 41 ms
53,812 KB
testcase_05 AC 40 ms
54,796 KB
testcase_06 AC 41 ms
54,312 KB
testcase_07 AC 43 ms
53,824 KB
testcase_08 AC 41 ms
54,436 KB
testcase_09 AC 43 ms
54,252 KB
testcase_10 AC 42 ms
54,000 KB
testcase_11 AC 41 ms
54,852 KB
testcase_12 AC 41 ms
53,936 KB
testcase_13 AC 41 ms
55,252 KB
testcase_14 AC 42 ms
54,196 KB
testcase_15 AC 42 ms
54,212 KB
testcase_16 AC 134 ms
124,676 KB
testcase_17 AC 136 ms
124,124 KB
testcase_18 AC 122 ms
116,124 KB
testcase_19 AC 116 ms
116,208 KB
testcase_20 AC 103 ms
116,896 KB
testcase_21 AC 105 ms
121,244 KB
testcase_22 AC 76 ms
84,208 KB
testcase_23 AC 44 ms
57,548 KB
testcase_24 AC 125 ms
111,892 KB
testcase_25 AC 86 ms
99,220 KB
testcase_26 AC 112 ms
116,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(str, input().split())
n = int(n)
C = list(map(int, input().split()))
import copy
D = copy.copy(C)
if n < len(k):
    print(-1)
    exit()

if n > len(k):
    ans = []
    for i, c in enumerate(C):
        ans += [str(i+1)]*c
    print(''.join(ans))
    exit()

l = len(k)
k = list(k)
npd, p = -1, -1
for i in range(l):
    d = int(k[i])
    nd = -1
    for j in range(d+1, 10):
        if C[j-1] > 0:
            nd = j
            break
    if nd != -1:
        p = i
        npd = nd
    if d == 0:
        break
    if not C[d-1]:
        break
    else:
        C[d-1] -= 1
if p == -1:
    print(-1)
    exit()
ans = k[0:p]+[str(npd)]
for d in k[0:p]:
    d = int(d)
    if d != 0:
        D[d-1] -= 1
D[npd-1] -= 1
for i, c in enumerate(D):
    ans += [str(i+1)]*c
print(''.join(ans))
0