結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,768 KB
testcase_01 AC 38 ms
52,840 KB
testcase_02 AC 38 ms
52,112 KB
testcase_03 AC 38 ms
52,796 KB
testcase_04 AC 38 ms
52,340 KB
testcase_05 AC 39 ms
52,696 KB
testcase_06 AC 38 ms
52,740 KB
testcase_07 AC 39 ms
52,556 KB
testcase_08 AC 38 ms
53,564 KB
testcase_09 AC 40 ms
52,700 KB
testcase_10 AC 38 ms
53,148 KB
testcase_11 AC 43 ms
58,920 KB
testcase_12 AC 40 ms
52,684 KB
testcase_13 AC 43 ms
59,120 KB
testcase_14 AC 41 ms
59,224 KB
testcase_15 AC 39 ms
52,484 KB
testcase_16 AC 221 ms
98,456 KB
testcase_17 AC 370 ms
120,584 KB
testcase_18 AC 300 ms
123,952 KB
testcase_19 AC 130 ms
93,880 KB
testcase_20 AC 142 ms
95,600 KB
testcase_21 AC 394 ms
138,948 KB
testcase_22 AC 375 ms
139,032 KB
testcase_23 AC 392 ms
139,016 KB
testcase_24 AC 375 ms
139,144 KB
testcase_25 AC 374 ms
139,588 KB
testcase_26 AC 391 ms
139,336 KB
testcase_27 AC 397 ms
139,144 KB
testcase_28 AC 380 ms
139,416 KB
testcase_29 AC 397 ms
139,036 KB
testcase_30 AC 400 ms
139,284 KB
testcase_31 AC 372 ms
139,016 KB
testcase_32 AC 232 ms
138,388 KB
testcase_33 AC 235 ms
138,776 KB
testcase_34 AC 245 ms
139,156 KB
testcase_35 AC 246 ms
139,180 KB
testcase_36 AC 37 ms
52,692 KB
testcase_37 AC 38 ms
52,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
L = []
for i in range(N):
    L.append([A[i]-B[i],i])
L = sorted(L, reverse=True, key=lambda x: x[0])
ANS = ['B']*N
for i in range(K):
    ANS[L[i][1]]='A'
print(''.join(map(str, ANS)))
0