結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー googol_S0googol_S0
提出日時 2021-07-30 21:54:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 985 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 104,224 KB
最終ジャッジ日時 2024-09-16 00:00:20
合計ジャッジ時間 3,433 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 42 ms
52,096 KB
testcase_08 AC 41 ms
51,840 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 42 ms
52,224 KB
testcase_11 AC 41 ms
52,224 KB
testcase_12 AC 41 ms
52,096 KB
testcase_13 AC 42 ms
52,224 KB
testcase_14 AC 41 ms
51,968 KB
testcase_15 AC 42 ms
52,224 KB
testcase_16 AC 165 ms
99,364 KB
testcase_17 AC 169 ms
101,404 KB
testcase_18 AC 153 ms
103,968 KB
testcase_19 AC 152 ms
104,224 KB
testcase_20 AC 142 ms
97,820 KB
testcase_21 AC 141 ms
97,824 KB
testcase_22 AC 140 ms
97,812 KB
testcase_23 AC 47 ms
54,656 KB
testcase_24 AC 148 ms
93,312 KB
testcase_25 AC 76 ms
80,256 KB
testcase_26 AC 144 ms
97,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=input().split()
N=int(N)
if len(K)>N:
  print(-1)
  exit()
K=''.join(['0'*(N-len(K)),K])
X=[int(K[i]) for i in range(N)]
X[-1]+=1
for i in range(N-1,-1,-1):
  if X[i]==10:
    X[i]=0
    if i==0:
      print(-1)
      exit()
    X[i-1]+=1
C=[0]+list(map(int,input().split()))
ANS=[0]*N
for i in range(N):
  if C[X[i]]==0:
    for j in range(X[i]+1,10):
      if C[j]:
        ANS[i]=j
        C[j]-=1
        i+=1
        for k in range(10):
          for l in range(C[k]):
            ANS[i]=k
            i+=1
        print(*ANS,sep='')
        exit()
    i-=1
    while 1:
      if i==-1:
        print(-1)
        exit()
      C[ANS[i]]+=1
      ANS[i]=0
      for j in range(X[i]+1,10):
        if C[j]:
          ANS[i]=j
          C[j]-=1
          i+=1
          for k in range(10):
            for l in range(C[k]):
              ANS[i]=k
              i+=1
          print(*ANS,sep='')
          exit()
      i-=1
  else:
    ANS[i]=X[i]
    C[X[i]]-=1
print(*ANS,sep='')
0