結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー mahiro72mahiro72
提出日時 2021-10-29 22:12:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 421 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 81,852 KB
実行使用メモリ 135,984 KB
最終ジャッジ日時 2024-10-07 11:35:09
合計ジャッジ時間 13,143 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 34 ms
52,480 KB
testcase_04 AC 35 ms
52,480 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 36 ms
52,480 KB
testcase_07 AC 35 ms
52,608 KB
testcase_08 AC 35 ms
52,608 KB
testcase_09 AC 37 ms
52,352 KB
testcase_10 AC 37 ms
52,992 KB
testcase_11 AC 44 ms
61,056 KB
testcase_12 AC 43 ms
53,120 KB
testcase_13 AC 46 ms
61,440 KB
testcase_14 AC 45 ms
62,720 KB
testcase_15 AC 36 ms
53,260 KB
testcase_16 AC 155 ms
96,188 KB
testcase_17 AC 257 ms
133,796 KB
testcase_18 AC 273 ms
103,552 KB
testcase_19 AC 126 ms
93,040 KB
testcase_20 AC 127 ms
95,104 KB
testcase_21 AC 249 ms
135,300 KB
testcase_22 AC 364 ms
135,860 KB
testcase_23 AC 241 ms
135,216 KB
testcase_24 AC 334 ms
135,344 KB
testcase_25 AC 347 ms
135,348 KB
testcase_26 AC 259 ms
135,164 KB
testcase_27 AC 264 ms
135,544 KB
testcase_28 AC 324 ms
135,240 KB
testcase_29 AC 271 ms
135,476 KB
testcase_30 AC 251 ms
135,804 KB
testcase_31 AC 421 ms
135,144 KB
testcase_32 AC 348 ms
135,540 KB
testcase_33 AC 307 ms
135,984 KB
testcase_34 AC 312 ms
135,288 KB
testcase_35 AC 303 ms
135,732 KB
testcase_36 AC 36 ms
51,968 KB
testcase_37 AC 36 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N,K = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
use = [True]*N
C = []

for i,(a,b) in enumerate(zip(A,B)):
    heapq.heappush(C,(-(b-a),i))

for i in range(N-K):
    value,index = heapq.heappop(C)
    use[index]=False

ans = ''.join(list(map(lambda x:'A'if x else 'B',use)))
print(ans)
0