結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー 330Xs330Xs
提出日時 2022-02-05 13:53:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 464 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 151,468 KB
最終ジャッジ日時 2024-06-11 13:29:32
合計ジャッジ時間 16,088 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
53,760 KB
testcase_01 AC 45 ms
53,888 KB
testcase_02 AC 46 ms
53,760 KB
testcase_03 AC 46 ms
53,248 KB
testcase_04 AC 42 ms
53,632 KB
testcase_05 AC 41 ms
53,760 KB
testcase_06 AC 40 ms
53,504 KB
testcase_07 AC 41 ms
53,504 KB
testcase_08 AC 42 ms
53,248 KB
testcase_09 AC 42 ms
53,376 KB
testcase_10 AC 42 ms
53,376 KB
testcase_11 AC 47 ms
60,160 KB
testcase_12 AC 44 ms
54,016 KB
testcase_13 AC 47 ms
60,032 KB
testcase_14 AC 47 ms
60,288 KB
testcase_15 AC 43 ms
54,656 KB
testcase_16 AC 235 ms
113,432 KB
testcase_17 AC 394 ms
137,600 KB
testcase_18 AC 277 ms
119,580 KB
testcase_19 AC 147 ms
92,544 KB
testcase_20 AC 165 ms
94,592 KB
testcase_21 AC 464 ms
146,476 KB
testcase_22 AC 401 ms
136,040 KB
testcase_23 AC 458 ms
151,468 KB
testcase_24 AC 423 ms
136,100 KB
testcase_25 AC 422 ms
135,852 KB
testcase_26 AC 457 ms
146,356 KB
testcase_27 AC 459 ms
146,220 KB
testcase_28 AC 423 ms
136,376 KB
testcase_29 AC 453 ms
146,092 KB
testcase_30 AC 457 ms
149,032 KB
testcase_31 AC 416 ms
136,112 KB
testcase_32 AC 272 ms
137,896 KB
testcase_33 AC 278 ms
137,772 KB
testcase_34 AC 299 ms
137,900 KB
testcase_35 AC 296 ms
137,896 KB
testcase_36 AC 42 ms
53,376 KB
testcase_37 AC 41 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n,k = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))

lis = []
for i in range(n):
    diff = a[i] - b[i]
    lis.append([a[i],b[i],diff,i])
lis2 = sorted(lis,key=lambda x:x[2])[::-1]
select_a = set()
for i in range(k):
    select_a.add(lis2[i][3])
    
ans = deque()
for i in range(n):
    if(i in select_a):
        ans.append('A')
    else:
        ans.append('B')
print(''.join(ans))
0