結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー roarisroaris
提出日時 2021-10-29 21:47:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 359 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 135,808 KB
最終ジャッジ日時 2024-10-07 10:48:21
合計ジャッジ時間 12,978 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,504 KB
testcase_01 AC 40 ms
53,120 KB
testcase_02 AC 39 ms
53,632 KB
testcase_03 AC 41 ms
53,504 KB
testcase_04 AC 41 ms
54,016 KB
testcase_05 AC 42 ms
53,632 KB
testcase_06 AC 42 ms
53,248 KB
testcase_07 AC 41 ms
53,632 KB
testcase_08 AC 42 ms
53,504 KB
testcase_09 AC 40 ms
53,504 KB
testcase_10 AC 39 ms
53,376 KB
testcase_11 AC 45 ms
59,592 KB
testcase_12 AC 42 ms
53,760 KB
testcase_13 AC 44 ms
59,520 KB
testcase_14 AC 45 ms
59,776 KB
testcase_15 AC 42 ms
54,016 KB
testcase_16 AC 189 ms
93,564 KB
testcase_17 AC 350 ms
135,808 KB
testcase_18 AC 245 ms
104,232 KB
testcase_19 AC 128 ms
92,384 KB
testcase_20 AC 137 ms
94,308 KB
testcase_21 AC 343 ms
135,512 KB
testcase_22 AC 352 ms
135,248 KB
testcase_23 AC 347 ms
135,544 KB
testcase_24 AC 353 ms
135,168 KB
testcase_25 AC 348 ms
135,380 KB
testcase_26 AC 353 ms
135,160 KB
testcase_27 AC 349 ms
135,556 KB
testcase_28 AC 347 ms
135,508 KB
testcase_29 AC 351 ms
135,160 KB
testcase_30 AC 359 ms
135,428 KB
testcase_31 AC 342 ms
134,912 KB
testcase_32 AC 217 ms
135,420 KB
testcase_33 AC 215 ms
135,172 KB
testcase_34 AC 231 ms
135,248 KB
testcase_35 AC 230 ms
135,480 KB
testcase_36 AC 41 ms
53,504 KB
testcase_37 AC 42 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, K = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
d = [(i, A[i]-B[i]) for i in range(N)]
d.sort(key=lambda t: t[1], reverse=True)
ans = ['B']*N

for i, _ in d[:K]:
    ans[i] = 'A'

print(''.join(ans))
0