結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー rlangevinrlangevin
提出日時 2023-01-09 11:53:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 603 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 140,008 KB
最終ジャッジ日時 2024-05-09 21:51:50
合計ジャッジ時間 19,568 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 34 ms
51,712 KB
testcase_03 AC 33 ms
51,584 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 34 ms
51,584 KB
testcase_06 AC 35 ms
52,096 KB
testcase_07 AC 35 ms
51,968 KB
testcase_08 AC 35 ms
51,712 KB
testcase_09 AC 34 ms
51,712 KB
testcase_10 AC 37 ms
51,968 KB
testcase_11 AC 40 ms
58,240 KB
testcase_12 AC 36 ms
52,608 KB
testcase_13 AC 40 ms
58,496 KB
testcase_14 AC 40 ms
58,496 KB
testcase_15 AC 37 ms
52,608 KB
testcase_16 AC 297 ms
96,384 KB
testcase_17 AC 543 ms
117,272 KB
testcase_18 AC 417 ms
106,732 KB
testcase_19 AC 193 ms
94,080 KB
testcase_20 AC 206 ms
97,152 KB
testcase_21 AC 603 ms
139,392 KB
testcase_22 AC 581 ms
139,756 KB
testcase_23 AC 583 ms
139,880 KB
testcase_24 AC 585 ms
140,000 KB
testcase_25 AC 591 ms
139,620 KB
testcase_26 AC 579 ms
139,612 KB
testcase_27 AC 598 ms
140,008 KB
testcase_28 AC 583 ms
139,748 KB
testcase_29 AC 578 ms
139,876 KB
testcase_30 AC 600 ms
139,372 KB
testcase_31 AC 579 ms
139,624 KB
testcase_32 AC 328 ms
139,620 KB
testcase_33 AC 326 ms
139,368 KB
testcase_34 AC 344 ms
139,628 KB
testcase_35 AC 384 ms
139,752 KB
testcase_36 AC 43 ms
51,584 KB
testcase_37 AC 43 ms
51,584 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