結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー lloyzlloyz
提出日時 2021-11-07 00:13:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 631 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 59,756 KB
最終ジャッジ日時 2024-11-07 23:59:32
合計ジャッジ時間 18,318 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 31 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,752 KB
testcase_16 AC 313 ms
35,940 KB
testcase_17 AC 572 ms
57,172 KB
testcase_18 AC 355 ms
46,268 KB
testcase_19 AC 162 ms
24,900 KB
testcase_20 AC 189 ms
26,504 KB
testcase_21 AC 607 ms
59,628 KB
testcase_22 AC 535 ms
59,628 KB
testcase_23 AC 631 ms
59,636 KB
testcase_24 AC 558 ms
59,724 KB
testcase_25 AC 551 ms
59,756 KB
testcase_26 AC 618 ms
59,756 KB
testcase_27 AC 605 ms
59,756 KB
testcase_28 AC 545 ms
59,596 KB
testcase_29 AC 592 ms
59,624 KB
testcase_30 AC 600 ms
59,752 KB
testcase_31 AC 506 ms
59,724 KB
testcase_32 AC 368 ms
52,976 KB
testcase_33 AC 371 ms
52,840 KB
testcase_34 AC 378 ms
53,132 KB
testcase_35 AC 374 ms
53,100 KB
testcase_36 AC 29 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