結果

問題 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  
実行時間 822 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 59,756 KB
最終ジャッジ日時 2024-11-23 20:03:16
合計ジャッジ時間 20,128 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 33 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 32 ms
10,624 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 306 ms
35,804 KB
testcase_17 AC 572 ms
57,044 KB
testcase_18 AC 360 ms
46,148 KB
testcase_19 AC 161 ms
24,780 KB
testcase_20 AC 188 ms
26,504 KB
testcase_21 AC 614 ms
59,624 KB
testcase_22 AC 542 ms
59,596 KB
testcase_23 AC 637 ms
59,604 KB
testcase_24 AC 569 ms
59,720 KB
testcase_25 AC 554 ms
59,720 KB
testcase_26 AC 629 ms
59,592 KB
testcase_27 AC 627 ms
59,624 KB
testcase_28 AC 570 ms
59,756 KB
testcase_29 AC 615 ms
59,720 KB
testcase_30 AC 822 ms
59,628 KB
testcase_31 AC 666 ms
59,632 KB
testcase_32 AC 382 ms
52,972 KB
testcase_33 AC 382 ms
52,848 KB
testcase_34 AC 391 ms
53,064 KB
testcase_35 AC 388 ms
53,100 KB
testcase_36 AC 30 ms
10,624 KB
testcase_37 AC 30 ms
10,624 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