結果
問題 | No.1630 Sorting Integers (Greater than K) |
ユーザー | とりゐ |
提出日時 | 2021-07-15 15:12:11 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 831 bytes |
コンパイル時間 | 215 ms |
コンパイル使用メモリ | 82,216 KB |
実行使用メモリ | 83,884 KB |
最終ジャッジ日時 | 2024-09-15 21:59:15 |
合計ジャッジ時間 | 3,375 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,096 KB |
testcase_01 | AC | 39 ms
51,968 KB |
testcase_02 | WA | - |
testcase_03 | AC | 39 ms
51,840 KB |
testcase_04 | AC | 39 ms
51,968 KB |
testcase_05 | AC | 39 ms
51,840 KB |
testcase_06 | AC | 39 ms
51,712 KB |
testcase_07 | AC | 41 ms
51,840 KB |
testcase_08 | AC | 39 ms
51,840 KB |
testcase_09 | AC | 40 ms
51,584 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 | AC | 45 ms
58,624 KB |
testcase_23 | AC | 42 ms
55,040 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 76 ms
77,440 KB |
ソースコード
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 memo=-1 memo2=0 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 d=c.copy() 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: memo=i memo2=j flag2=False c[int(k[i])-1]-=1 #print(ans,i,c) tmp=k[:memo]+str(memo2+1) for i in range(memo): d[int(k[i])-1]-=1 d[memo2]-=1 for h in range(9): if memo2==h: tmp+=str(h+1)*(d[h]-1) else: tmp+=str(h+1)*d[h] print(tmp)