結果
問題 | No.1630 Sorting Integers (Greater than K) |
ユーザー | H20 |
提出日時 | 2021-07-30 23:42:59 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,315 bytes |
コンパイル時間 | 342 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 68,096 KB |
最終ジャッジ日時 | 2024-09-16 03:56:13 |
合計ジャッジ時間 | 2,863 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
53,632 KB |
testcase_01 | AC | 42 ms
53,760 KB |
testcase_02 | AC | 40 ms
53,632 KB |
testcase_03 | AC | 44 ms
53,632 KB |
testcase_04 | AC | 40 ms
53,888 KB |
testcase_05 | AC | 41 ms
53,760 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
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 | - |
ソースコード
import collections N,K = map(int, input().split()) K+=1 K = str(K).zfill(N) A = [0] + list(map(int, input().split())) for i in range(int(K[0]),10): if A[i]>0: break else: print(-1) exit() 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: 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)