結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 35 ms
51,584 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 33 ms
52,352 KB
testcase_06 AC 32 ms
52,096 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 35 ms
52,608 KB
testcase_09 AC 34 ms
51,968 KB
testcase_10 AC 35 ms
51,968 KB
testcase_11 AC 39 ms
59,136 KB
testcase_12 AC 36 ms
52,864 KB
testcase_13 AC 39 ms
59,520 KB
testcase_14 AC 37 ms
60,032 KB
testcase_15 AC 34 ms
53,120 KB
testcase_16 AC 300 ms
100,952 KB
testcase_17 AC 554 ms
128,616 KB
testcase_18 AC 443 ms
114,284 KB
testcase_19 AC 187 ms
96,164 KB
testcase_20 AC 201 ms
95,084 KB
testcase_21 AC 613 ms
147,056 KB
testcase_22 AC 604 ms
147,128 KB
testcase_23 AC 597 ms
146,792 KB
testcase_24 AC 620 ms
146,868 KB
testcase_25 AC 613 ms
147,052 KB
testcase_26 AC 624 ms
146,928 KB
testcase_27 AC 607 ms
147,128 KB
testcase_28 AC 596 ms
146,616 KB
testcase_29 AC 600 ms
146,752 KB
testcase_30 AC 637 ms
147,020 KB
testcase_31 AC 589 ms
146,676 KB
testcase_32 AC 347 ms
147,260 KB
testcase_33 AC 344 ms
146,624 KB
testcase_34 AC 355 ms
146,852 KB
testcase_35 AC 353 ms
146,868 KB
testcase_36 AC 33 ms
51,968 KB
testcase_37 AC 32 ms
51,840 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