結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー rlangevinrlangevin
提出日時 2023-01-09 11:53:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 606 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 140,096 KB
最終ジャッジ日時 2024-12-17 15:59:02
合計ジャッジ時間 17,794 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,496 KB
testcase_01 AC 33 ms
52,284 KB
testcase_02 AC 32 ms
53,488 KB
testcase_03 AC 31 ms
53,248 KB
testcase_04 AC 33 ms
52,164 KB
testcase_05 AC 32 ms
51,944 KB
testcase_06 AC 33 ms
52,736 KB
testcase_07 AC 32 ms
52,312 KB
testcase_08 AC 33 ms
53,060 KB
testcase_09 AC 34 ms
52,548 KB
testcase_10 AC 35 ms
53,244 KB
testcase_11 AC 36 ms
58,932 KB
testcase_12 AC 33 ms
53,032 KB
testcase_13 AC 37 ms
59,404 KB
testcase_14 AC 38 ms
59,264 KB
testcase_15 AC 37 ms
53,136 KB
testcase_16 AC 319 ms
96,812 KB
testcase_17 AC 566 ms
117,680 KB
testcase_18 AC 415 ms
106,584 KB
testcase_19 AC 181 ms
94,240 KB
testcase_20 AC 204 ms
97,188 KB
testcase_21 AC 598 ms
139,808 KB
testcase_22 AC 606 ms
139,560 KB
testcase_23 AC 593 ms
140,096 KB
testcase_24 AC 582 ms
139,480 KB
testcase_25 AC 597 ms
139,576 KB
testcase_26 AC 582 ms
139,676 KB
testcase_27 AC 587 ms
139,948 KB
testcase_28 AC 580 ms
139,828 KB
testcase_29 AC 584 ms
139,820 KB
testcase_30 AC 580 ms
139,708 KB
testcase_31 AC 596 ms
139,692 KB
testcase_32 AC 332 ms
139,828 KB
testcase_33 AC 324 ms
139,680 KB
testcase_34 AC 340 ms
139,932 KB
testcase_35 AC 334 ms
139,828 KB
testcase_36 AC 34 ms
53,604 KB
testcase_37 AC 33 ms
53,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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