結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー playerplayer
提出日時 2024-01-15 03:20:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 727 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 140,432 KB
最終ジャッジ日時 2024-09-28 02:11:28
合計ジャッジ時間 19,693 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,092 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 36 ms
51,696 KB
testcase_05 AC 36 ms
53,300 KB
testcase_06 AC 36 ms
52,588 KB
testcase_07 AC 35 ms
53,628 KB
testcase_08 AC 37 ms
52,328 KB
testcase_09 AC 36 ms
52,660 KB
testcase_10 AC 36 ms
52,480 KB
testcase_11 AC 39 ms
58,632 KB
testcase_12 AC 37 ms
53,668 KB
testcase_13 AC 40 ms
58,492 KB
testcase_14 AC 40 ms
59,224 KB
testcase_15 AC 37 ms
53,808 KB
testcase_16 AC 344 ms
107,288 KB
testcase_17 AC 654 ms
120,532 KB
testcase_18 AC 482 ms
122,896 KB
testcase_19 AC 196 ms
94,100 KB
testcase_20 AC 222 ms
95,712 KB
testcase_21 AC 722 ms
139,792 KB
testcase_22 AC 689 ms
139,828 KB
testcase_23 AC 714 ms
139,548 KB
testcase_24 AC 689 ms
139,900 KB
testcase_25 AC 708 ms
139,684 KB
testcase_26 AC 726 ms
139,676 KB
testcase_27 AC 727 ms
139,532 KB
testcase_28 AC 701 ms
139,660 KB
testcase_29 AC 697 ms
140,060 KB
testcase_30 AC 695 ms
139,656 KB
testcase_31 AC 675 ms
139,548 KB
testcase_32 AC 360 ms
139,804 KB
testcase_33 AC 357 ms
140,164 KB
testcase_34 AC 365 ms
139,800 KB
testcase_35 AC 368 ms
140,432 KB
testcase_36 AC 38 ms
53,572 KB
testcase_37 AC 33 ms
53,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

lis = []
for i in range(n):
    li = [a[i] - b[i], i]
    lis.append(li)

lis.sort(reverse=True)
ans = [None] * n

for i in range(k):
    ans[lis[i][1]] = "A"

for i in range(n):
    if ans[i] == None:
        ans[i] = "B"

print("".join(ans))
0