結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー ああいいああいい
提出日時 2022-03-16 18:47:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 670 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 139,960 KB
最終ジャッジ日時 2024-09-24 19:23:15
合計ジャッジ時間 19,130 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,108 KB
testcase_01 AC 35 ms
52,404 KB
testcase_02 AC 36 ms
52,736 KB
testcase_03 AC 36 ms
53,096 KB
testcase_04 AC 36 ms
53,052 KB
testcase_05 AC 37 ms
52,196 KB
testcase_06 AC 36 ms
52,472 KB
testcase_07 AC 36 ms
53,900 KB
testcase_08 AC 38 ms
53,488 KB
testcase_09 AC 37 ms
52,744 KB
testcase_10 AC 37 ms
52,772 KB
testcase_11 AC 40 ms
58,920 KB
testcase_12 AC 37 ms
53,384 KB
testcase_13 AC 41 ms
59,424 KB
testcase_14 AC 41 ms
59,844 KB
testcase_15 AC 38 ms
53,092 KB
testcase_16 AC 338 ms
96,872 KB
testcase_17 AC 598 ms
117,732 KB
testcase_18 AC 461 ms
106,932 KB
testcase_19 AC 195 ms
94,268 KB
testcase_20 AC 218 ms
97,184 KB
testcase_21 AC 631 ms
139,552 KB
testcase_22 AC 650 ms
139,452 KB
testcase_23 AC 663 ms
139,736 KB
testcase_24 AC 670 ms
139,816 KB
testcase_25 AC 643 ms
139,828 KB
testcase_26 AC 637 ms
139,960 KB
testcase_27 AC 641 ms
139,576 KB
testcase_28 AC 638 ms
139,700 KB
testcase_29 AC 650 ms
139,960 KB
testcase_30 AC 644 ms
139,868 KB
testcase_31 AC 645 ms
139,312 KB
testcase_32 AC 349 ms
139,552 KB
testcase_33 AC 348 ms
139,580 KB
testcase_34 AC 363 ms
139,944 KB
testcase_35 AC 359 ms
139,740 KB
testcase_36 AC 37 ms
52,708 KB
testcase_37 AC 37 ms
53,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))

l = [(A[i]-B[i],i) for i in range(N)]
ans = ["B"] * N
l.sort(reverse = True)
for k in range(K):
    _,i = l[k]
    ans[i] = "A"
print("".join(ans))
0