結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー 👑 rin204rin204
提出日時 2022-01-18 02:26:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 708 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 147,292 KB
最終ジャッジ日時 2024-11-23 13:10:31
合計ジャッジ時間 20,177 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,328 KB
testcase_01 AC 40 ms
51,328 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 41 ms
51,584 KB
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 48 ms
59,136 KB
testcase_12 AC 43 ms
52,992 KB
testcase_13 AC 49 ms
59,264 KB
testcase_14 AC 49 ms
59,776 KB
testcase_15 AC 44 ms
52,608 KB
testcase_16 AC 353 ms
101,304 KB
testcase_17 AC 653 ms
128,288 KB
testcase_18 AC 498 ms
114,408 KB
testcase_19 AC 219 ms
95,744 KB
testcase_20 AC 235 ms
95,232 KB
testcase_21 AC 695 ms
147,176 KB
testcase_22 AC 694 ms
146,804 KB
testcase_23 AC 694 ms
146,536 KB
testcase_24 AC 708 ms
146,792 KB
testcase_25 AC 696 ms
146,796 KB
testcase_26 AC 689 ms
146,800 KB
testcase_27 AC 695 ms
147,292 KB
testcase_28 AC 700 ms
147,052 KB
testcase_29 AC 668 ms
146,796 KB
testcase_30 AC 680 ms
146,696 KB
testcase_31 AC 677 ms
146,676 KB
testcase_32 AC 399 ms
147,180 KB
testcase_33 AC 396 ms
147,060 KB
testcase_34 AC 405 ms
146,928 KB
testcase_35 AC 408 ms
147,052 KB
testcase_36 AC 40 ms
51,584 KB
testcase_37 AC 41 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = [(a - b, i) for i, (a, b) in enumerate(zip(A, B))]
C.sort(reverse = True)
ans = ["B"] * n
for _, i in C[:k]:
    ans[i] = "A"
print(*ans, sep="")
0