結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー titiatitia
提出日時 2021-07-30 23:04:20
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,192 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 70,424 KB
最終ジャッジ日時 2024-09-16 03:07:41
合計ジャッジ時間 2,473 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 36 ms
52,340 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 36 ms
52,352 KB
testcase_06 AC 36 ms
52,480 KB
testcase_07 AC 37 ms
51,712 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 37 ms
52,480 KB
testcase_11 AC 38 ms
52,352 KB
testcase_12 AC 36 ms
52,224 KB
testcase_13 AC 37 ms
51,840 KB
testcase_14 AC 36 ms
52,864 KB
testcase_15 AC 38 ms
52,096 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
C=list(map(int,input().split()))

ANS=""
for i in range(9):
    ANS+=str(i+1)*C[i]

if int(ANS)>K:
    print(ANS)
    exit()

if int(ANS[::-1])<=K:
    print(-1)
    exit()

S=str(K)
ANS=[-1]*len(S)

for i in range(len(S)):
    x=int(S[i])

    if C[x-1]>0 and i!=len(S)-1:
        ANS[i]=x
        C[x-1]-=1

    else:        
        for j in range(x,9):
            if C[j]>0:
                C[j]-=1
                ANS[i]=j+1
                break
            
        else:
            for j in range(i-1,-1,-1):
                C[ANS[j]-1]+=1
                ANS[j]=-1

                x=int(S[j])
                flag=0

                for k in range(x,9):
                    if C[k]>0:
                        C[k]-=1
                        ANS[j]=k+1
                        flag=1
                        break

                if flag:
                    break

        break

#print(ANS,C)

for i in range(len(S)):
    if ANS[i]==-1:
        for j in range(9):
            if C[j]>0:
                C[j]-=1
                ANS[i]=j+1
                break

print("".join(map(str,ANS)))
                
                    
                    
0