結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー 👑 KazunKazun
提出日時 2021-08-01 03:22:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 139,960 KB
最終ジャッジ日時 2024-10-07 08:44:09
合計ジャッジ時間 13,765 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,424 KB
testcase_01 AC 38 ms
53,360 KB
testcase_02 AC 37 ms
52,896 KB
testcase_03 AC 37 ms
52,812 KB
testcase_04 AC 37 ms
53,136 KB
testcase_05 AC 38 ms
52,396 KB
testcase_06 AC 38 ms
52,476 KB
testcase_07 AC 38 ms
53,012 KB
testcase_08 AC 38 ms
53,204 KB
testcase_09 AC 38 ms
52,444 KB
testcase_10 AC 38 ms
52,308 KB
testcase_11 AC 41 ms
59,888 KB
testcase_12 AC 38 ms
53,212 KB
testcase_13 AC 42 ms
59,804 KB
testcase_14 AC 42 ms
60,456 KB
testcase_15 AC 38 ms
52,452 KB
testcase_16 AC 194 ms
94,852 KB
testcase_17 AC 389 ms
120,160 KB
testcase_18 AC 257 ms
105,772 KB
testcase_19 AC 139 ms
94,644 KB
testcase_20 AC 146 ms
96,104 KB
testcase_21 AC 400 ms
139,448 KB
testcase_22 AC 401 ms
139,928 KB
testcase_23 AC 415 ms
139,812 KB
testcase_24 AC 401 ms
139,944 KB
testcase_25 AC 411 ms
139,588 KB
testcase_26 AC 405 ms
139,732 KB
testcase_27 AC 409 ms
139,960 KB
testcase_28 AC 403 ms
139,584 KB
testcase_29 AC 417 ms
139,536 KB
testcase_30 AC 404 ms
139,824 KB
testcase_31 AC 397 ms
139,592 KB
testcase_32 AC 240 ms
139,744 KB
testcase_33 AC 239 ms
139,708 KB
testcase_34 AC 257 ms
139,824 KB
testcase_35 AC 256 ms
139,688 KB
testcase_36 AC 36 ms
52,824 KB
testcase_37 AC 37 ms
52,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
write=sys.stdout.write

N,K=map(int,input().split())
A=list(map(int,input().split()))
B=list(map(int,input().split()))

S=[0]*N
U=sorted(range(N),key=lambda i:A[i]-B[i],reverse=True)

for i in U[:K]:
    S[i]=1

write("".join(map(lambda x:'A' if x else 'B' ,S)))
0