結果

問題 No.1630 Sorting Integers (Greater than K)
ユーザー googol_S0googol_S0
提出日時 2021-07-30 21:54:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 966 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 104,100 KB
最終ジャッジ日時 2024-09-16 00:00:03
合計ジャッジ時間 4,146 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 42 ms
51,584 KB
testcase_04 AC 42 ms
51,840 KB
testcase_05 AC 42 ms
51,712 KB
testcase_06 AC 42 ms
51,712 KB
testcase_07 AC 42 ms
51,840 KB
testcase_08 AC 43 ms
51,712 KB
testcase_09 AC 43 ms
51,712 KB
testcase_10 AC 43 ms
51,840 KB
testcase_11 AC 43 ms
52,096 KB
testcase_12 AC 42 ms
52,096 KB
testcase_13 AC 42 ms
52,224 KB
testcase_14 AC 44 ms
52,096 KB
testcase_15 AC 44 ms
52,224 KB
testcase_16 AC 169 ms
99,108 KB
testcase_17 AC 170 ms
101,280 KB
testcase_18 AC 161 ms
104,100 KB
testcase_19 AC 160 ms
103,840 KB
testcase_20 AC 145 ms
97,948 KB
testcase_21 AC 146 ms
97,948 KB
testcase_22 AC 144 ms
97,692 KB
testcase_23 AC 46 ms
54,656 KB
testcase_24 AC 154 ms
93,184 KB
testcase_25 AC 79 ms
80,128 KB
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

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
0