結果
問題 | No.1630 Sorting Integers (Greater than K) |
ユーザー | とりゐ |
提出日時 | 2021-07-13 04:48:06 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 790 bytes |
コンパイル時間 | 338 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 283,560 KB |
最終ジャッジ日時 | 2024-09-15 21:58:20 |
合計ジャッジ時間 | 4,960 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
57,472 KB |
testcase_01 | AC | 41 ms
51,840 KB |
testcase_02 | AC | 41 ms
51,840 KB |
testcase_03 | AC | 40 ms
51,840 KB |
testcase_04 | AC | 41 ms
51,712 KB |
testcase_05 | AC | 41 ms
51,456 KB |
testcase_06 | AC | 41 ms
51,840 KB |
testcase_07 | AC | 42 ms
51,968 KB |
testcase_08 | AC | 41 ms
51,712 KB |
testcase_09 | AC | 41 ms
51,456 KB |
testcase_10 | AC | 41 ms
52,224 KB |
testcase_11 | AC | 42 ms
51,968 KB |
testcase_12 | AC | 41 ms
51,968 KB |
testcase_13 | AC | 42 ms
51,968 KB |
testcase_14 | AC | 49 ms
59,264 KB |
testcase_15 | AC | 44 ms
52,864 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
n,k=map(str,input().split()) n=int(n) c=list(map(int,input().split())) ans='-1' 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 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 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: flag2=False tmp=k[:i]+str(j+1) for h in range(9): if j==h: tmp+=str(h+1)*(c[h]-1) else: tmp+=str(h+1)*c[h] if flag2==False: ans=tmp c[int(k[i])-1]-=1 #print(ans,i,c) print(ans)