結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー ShirotsumeShirotsume
提出日時 2021-10-29 21:39:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 684 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 150,048 KB
最終ジャッジ日時 2024-04-16 14:24:39
合計ジャッジ時間 17,776 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 38 ms
51,584 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 36 ms
51,584 KB
testcase_06 AC 36 ms
52,608 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 38 ms
52,224 KB
testcase_11 AC 42 ms
58,624 KB
testcase_12 AC 39 ms
52,224 KB
testcase_13 AC 42 ms
58,880 KB
testcase_14 AC 42 ms
59,008 KB
testcase_15 AC 38 ms
52,864 KB
testcase_16 AC 333 ms
101,552 KB
testcase_17 AC 615 ms
129,948 KB
testcase_18 AC 472 ms
114,788 KB
testcase_19 AC 199 ms
97,536 KB
testcase_20 AC 219 ms
95,928 KB
testcase_21 AC 667 ms
149,428 KB
testcase_22 AC 679 ms
149,548 KB
testcase_23 AC 670 ms
149,812 KB
testcase_24 AC 669 ms
149,804 KB
testcase_25 AC 668 ms
149,868 KB
testcase_26 AC 666 ms
149,476 KB
testcase_27 AC 666 ms
149,552 KB
testcase_28 AC 668 ms
149,820 KB
testcase_29 AC 664 ms
149,952 KB
testcase_30 AC 677 ms
149,604 KB
testcase_31 AC 684 ms
149,920 KB
testcase_32 AC 368 ms
150,048 KB
testcase_33 AC 363 ms
149,744 KB
testcase_34 AC 378 ms
149,812 KB
testcase_35 AC 376 ms
149,680 KB
testcase_36 AC 38 ms
52,352 KB
testcase_37 AC 37 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))

#まず全部Aを買うとすると、嬉しさはsum(a)
#Bに変えると差し引きB - A、これの大きい順にソートして貪欲


answer = ['A'] * n
c = []
for i in range(n):
    c.append((b[i] - a[i], i))
c.sort(reverse = True)

for i in range(n - k):
    answer[c[i][1]] = 'B'
print(''.join(answer))



0