結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー irumo8202irumo8202
提出日時 2022-02-02 08:54:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 531 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 66,040 KB
最終ジャッジ日時 2024-06-11 09:19:25
合計ジャッジ時間 16,179 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 26 ms
10,880 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 28 ms
10,880 KB
testcase_15 AC 27 ms
10,752 KB
testcase_16 AC 257 ms
38,804 KB
testcase_17 AC 484 ms
62,892 KB
testcase_18 AC 347 ms
50,888 KB
testcase_19 AC 141 ms
26,504 KB
testcase_20 AC 149 ms
28,536 KB
testcase_21 AC 492 ms
66,032 KB
testcase_22 AC 476 ms
65,908 KB
testcase_23 AC 510 ms
66,040 KB
testcase_24 AC 486 ms
65,912 KB
testcase_25 AC 469 ms
65,912 KB
testcase_26 AC 516 ms
65,908 KB
testcase_27 AC 500 ms
66,036 KB
testcase_28 AC 476 ms
65,904 KB
testcase_29 AC 496 ms
65,784 KB
testcase_30 AC 531 ms
65,908 KB
testcase_31 AC 471 ms
65,904 KB
testcase_32 AC 295 ms
59,644 KB
testcase_33 AC 294 ms
59,636 KB
testcase_34 AC 306 ms
59,628 KB
testcase_35 AC 308 ms
59,428 KB
testcase_36 AC 25 ms
10,752 KB
testcase_37 AC 25 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())

diff = [
    (int(b) - int(a), i)
    for i, (a, b) in enumerate(zip(input().split(), input().split()))
]
ans = ["B"] * N
diff.sort()
for _, ind in diff[:K]:
    ans[ind] = "A"

print("".join(ans))
0