結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー とりゐとりゐ
提出日時 2021-07-15 15:24:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 843 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 81,856 KB
実行使用メモリ 82,768 KB
最終ジャッジ日時 2024-09-15 22:00:03
合計ジャッジ時間 3,083 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 41 ms
51,712 KB
testcase_05 AC 41 ms
51,840 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 40 ms
51,840 KB
testcase_08 AC 40 ms
51,712 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 40 ms
51,840 KB
testcase_11 AC 42 ms
51,968 KB
testcase_12 AC 40 ms
52,096 KB
testcase_13 AC 41 ms
51,968 KB
testcase_14 AC 40 ms
52,224 KB
testcase_15 AC 41 ms
52,480 KB
testcase_16 AC 123 ms
81,056 KB
testcase_17 AC 125 ms
80,464 KB
testcase_18 AC 118 ms
82,132 KB
testcase_19 AC 117 ms
82,768 KB
testcase_20 AC 53 ms
67,200 KB
testcase_21 AC 54 ms
66,816 KB
testcase_22 AC 46 ms
58,624 KB
testcase_23 AC 46 ms
55,296 KB
testcase_24 AC 92 ms
78,848 KB
testcase_25 AC 98 ms
77,440 KB
testcase_26 AC 77 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(str,input().split())
n=int(n)
c=list(map(int,input().split()))
if len(k)>n:
  print(-1)
  exit()
x=''
for i in range(9):
  x+=str(i+1)*c[i]
if len(k)<n:
  print(x)
  exit()
flag=True
memo=-1
memo2=0
for i in range(n):
  if flag:
    if int(k[i])<int(x[i]):
      print(x)
      exit()
    if int(k[i])>int(x[i]):
      flag=False
flag=True
d=c.copy()
for i in range(n):
  if flag:
    if k[i]=='0':
      flag=False  
    elif c[int(k[i])-1]==0:
      flag=False
    flag2=True
    for j in range(int(k[i]),9):
      if flag2 and c[j]>0:
        memo=i
        memo2=j
        flag2=False
    c[int(k[i])-1]-=1
    #print(ans,i,c)
if memo==-1:
  print(-1)
  exit()
tmp=k[:memo]+str(memo2+1)
for i in range(memo):
  d[int(k[i])-1]-=1
for h in range(9):
  if memo2==h:
    tmp+=str(h+1)*(d[h]-1)
  else:
    tmp+=str(h+1)*d[h]
print(tmp)
0