結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー shinichishinichi
提出日時 2021-10-29 21:42:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 540 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 577 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 139,936 KB
最終ジャッジ日時 2024-10-07 10:35:42
合計ジャッジ時間 15,243 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 38 ms
51,584 KB
testcase_06 AC 38 ms
51,712 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 37 ms
51,840 KB
testcase_10 AC 38 ms
51,584 KB
testcase_11 AC 42 ms
58,112 KB
testcase_12 AC 38 ms
51,712 KB
testcase_13 AC 42 ms
58,368 KB
testcase_14 AC 43 ms
58,112 KB
testcase_15 AC 40 ms
52,608 KB
testcase_16 AC 210 ms
99,604 KB
testcase_17 AC 386 ms
120,084 KB
testcase_18 AC 300 ms
122,204 KB
testcase_19 AC 141 ms
93,568 KB
testcase_20 AC 152 ms
96,128 KB
testcase_21 AC 519 ms
139,520 KB
testcase_22 AC 484 ms
139,928 KB
testcase_23 AC 530 ms
139,624 KB
testcase_24 AC 505 ms
139,528 KB
testcase_25 AC 502 ms
139,936 KB
testcase_26 AC 540 ms
139,532 KB
testcase_27 AC 531 ms
139,344 KB
testcase_28 AC 501 ms
139,676 KB
testcase_29 AC 522 ms
139,524 KB
testcase_30 AC 529 ms
139,808 KB
testcase_31 AC 477 ms
139,212 KB
testcase_32 AC 286 ms
139,624 KB
testcase_33 AC 284 ms
139,600 KB
testcase_34 AC 301 ms
139,476 KB
testcase_35 AC 305 ms
139,552 KB
testcase_36 AC 37 ms
51,712 KB
testcase_37 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())

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

AB = list(tuple(zip(A, B, range(N))))
AB.sort(key=lambda x: x[0]-x[1], reverse=True)
result = [None] * N

for k in range(K):
    result[AB[k][2]] = "A"

print("".join([a if a == "A" else "B"  for a in result]))
0