結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー PSL24251284PSL24251284
提出日時 2021-07-31 04:22:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 792 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 270,644 KB
最終ジャッジ日時 2024-09-16 08:25:01
合計ジャッジ時間 4,781 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,856 KB
testcase_01 WA -
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 41 ms
52,480 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 41 ms
52,224 KB
testcase_09 AC 46 ms
52,096 KB
testcase_10 WA -
testcase_11 AC 48 ms
60,032 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = input().split()
d = [0] + list(map(int,input().split()))
c = d.copy()
N = int(N)
if len(K) > N:
    print(-1)
    exit()
for i in range(N-len(K)):
    K = "0" + K
#print(K)
a = ""
for i0 in range(10):
    for j in range(c[i0]):
        a = a + str(i0)
ans = [a]
s = ""
for i in range(N):
    v = int(K[i])
    if c[v]:
        s = s + str(v)
        c[v] -= 1
        a = s
        for i0 in range(10):
            for j in range(c[i0]):
                a = a + str(i0)
        ans.append(a)
    else:
        break
for i in range(int(K[0])+1,10):
    if d[i]:
        a = str(i)
        d[i] -= 1
        for i0 in range(10):
            for j in range(d[i0]):
                a = a + str(i0)
        ans.append(a)

for v in ans:
    if K < v:
        print(v)
        exit()
print(-1)
0