結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー lloyzlloyz
提出日時 2023-08-15 12:50:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 639 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 59,720 KB
最終ジャッジ日時 2024-05-03 00:20:41
合計ジャッジ時間 18,533 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 31 ms
10,880 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 302 ms
35,932 KB
testcase_17 AC 562 ms
57,040 KB
testcase_18 AC 376 ms
46,152 KB
testcase_19 AC 157 ms
24,780 KB
testcase_20 AC 181 ms
26,484 KB
testcase_21 AC 623 ms
59,624 KB
testcase_22 AC 546 ms
59,720 KB
testcase_23 AC 639 ms
59,632 KB
testcase_24 AC 562 ms
59,596 KB
testcase_25 AC 558 ms
59,628 KB
testcase_26 AC 619 ms
59,628 KB
testcase_27 AC 614 ms
59,596 KB
testcase_28 AC 557 ms
59,624 KB
testcase_29 AC 601 ms
59,628 KB
testcase_30 AC 611 ms
59,716 KB
testcase_31 AC 532 ms
59,624 KB
testcase_32 AC 378 ms
52,844 KB
testcase_33 AC 375 ms
52,968 KB
testcase_34 AC 398 ms
53,100 KB
testcase_35 AC 385 ms
53,100 KB
testcase_36 AC 30 ms
10,752 KB
testcase_37 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

dif = [[0, i] for i in range(n)]
for i in range(n):
    dif[i][0] = A[i] - B[i]
dif.sort(key=lambda x: x[0], reverse=True)
ans = ["B" for _ in range(n)]
for i in range(k):
    ind = dif[i][1]
    ans[ind] = "A"
print("".join(ans))
0