結果
問題 | No.1630 Sorting Integers (Greater than K) |
ユーザー | nok0 |
提出日時 | 2021-07-30 21:15:44 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 979 bytes |
コンパイル時間 | 292 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 68,480 KB |
最終ジャッジ日時 | 2024-09-15 22:29:20 |
合計ジャッジ時間 | 2,784 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
51,712 KB |
testcase_01 | AC | 42 ms
51,712 KB |
testcase_02 | AC | 40 ms
52,224 KB |
testcase_03 | AC | 41 ms
51,840 KB |
testcase_04 | AC | 43 ms
51,584 KB |
testcase_05 | AC | 39 ms
52,096 KB |
testcase_06 | AC | 41 ms
51,840 KB |
testcase_07 | AC | 41 ms
52,096 KB |
testcase_08 | AC | 41 ms
51,584 KB |
testcase_09 | AC | 40 ms
52,224 KB |
testcase_10 | AC | 41 ms
51,840 KB |
testcase_11 | AC | 43 ms
51,968 KB |
testcase_12 | AC | 41 ms
51,840 KB |
testcase_13 | AC | 42 ms
51,840 KB |
testcase_14 | AC | 41 ms
52,352 KB |
testcase_15 | AC | 41 ms
52,224 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 | - |
ソースコード
n, k = map(str, input().split()) x = int(k) k = list(map(int, k)) k.reverse() n = int(n) while len(k) < n: k.append(0) k.reverse() c = list(map(int, input().split())) co = c.copy() pl = -1 sf = 1 for i in range(n): tmp = 1 if k[i]: if c[k[i] - 1] == 0: tmp = 0 else: c[k[i] - 1] -= 1 else: tmp = 0 for j in range(k[i], 9): if c[j]: pl = i if tmp == 0: c[j] -= 1 break if tmp == 0: break if pl == -1: print(-1) else: res = [] for i in range(0, pl): res.append(str(k[i])) co[k[i] - 1] -= 1 for j in range(k[pl], 9): if co[j]: res.append(str(j + 1)) co[j] -= 1 break for i in range(9): for j in range(co[i]): res.append(str(i + 1)) res = "".join(res) val = int(res) if val <= x: print(-1) else: print(res)