結果
問題 | No.1630 Sorting Integers (Greater than K) |
ユーザー | H20 |
提出日時 | 2021-07-30 23:57:37 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,835 bytes |
コンパイル時間 | 230 ms |
コンパイル使用メモリ | 82,456 KB |
実行使用メモリ | 97,604 KB |
最終ジャッジ日時 | 2024-09-16 04:10:23 |
合計ジャッジ時間 | 3,351 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
53,632 KB |
testcase_01 | AC | 40 ms
53,632 KB |
testcase_02 | AC | 39 ms
54,016 KB |
testcase_03 | AC | 39 ms
54,272 KB |
testcase_04 | AC | 40 ms
53,632 KB |
testcase_05 | AC | 40 ms
53,760 KB |
testcase_06 | AC | 39 ms
53,760 KB |
testcase_07 | AC | 38 ms
53,504 KB |
testcase_08 | AC | 39 ms
54,016 KB |
testcase_09 | AC | 41 ms
53,888 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 46 ms
56,576 KB |
testcase_24 | WA | - |
testcase_25 | RE | - |
testcase_26 | AC | 86 ms
82,668 KB |
ソースコード
import collections N,K = input().split() N = int(N) if len(K)>N: print(-1) exit() K = str(K).zfill(N) A = [0] + list(map(int, input().split())) ANS = collections.deque() for i in range(N): v = int(K[i]) if A[v]>0: ANS.append(v) A[v]-=1 else: #より大きい値がある for j in range(int(K[i])+1,10): if A[j]>0: ANS.append(j) A[j]-=1 for k in range(len(ANS),N): for j in range(10): if A[j]>0: ANS.append(j) A[j]-=1 print(''.join(map(str, ANS))) exit() #ないから遡る while len(ANS)>0: v = ANS.pop() A[v]+=1 for j in range(ANS[-1]+1,10): if A[j]>0: temp = ANS.pop() A[temp]+=1 ANS.append(j) A[j]-=1 for k in range(len(ANS),N): for j in range(10): if A[j]>0: ANS.append(j) A[j]-=1 print(''.join(map(str, ANS))) exit() print(-1) exit() while len(ANS)>0: v = ANS.pop() A[v]+=1 for j in range(ANS[-1]+1,10): if A[j]>0: temp = ANS.pop() A[temp]+=1 ANS.append(j) A[j]-=1 for k in range(len(ANS),N): for j in range(10): if A[j]>0: ANS.append(j) A[j]-=1 print(''.join(map(str, ANS))) exit() print(-1) exit()