結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー 👑 KazunKazun
提出日時 2021-06-29 18:43:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 455 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 142,904 KB
最終ジャッジ日時 2024-10-07 08:40:56
合計ジャッジ時間 15,726 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,024 KB
testcase_01 AC 37 ms
52,624 KB
testcase_02 AC 37 ms
52,120 KB
testcase_03 AC 37 ms
53,296 KB
testcase_04 AC 38 ms
52,404 KB
testcase_05 AC 38 ms
53,632 KB
testcase_06 AC 38 ms
52,312 KB
testcase_07 AC 38 ms
52,768 KB
testcase_08 AC 38 ms
53,008 KB
testcase_09 AC 38 ms
51,876 KB
testcase_10 AC 38 ms
52,508 KB
testcase_11 AC 42 ms
59,676 KB
testcase_12 AC 38 ms
52,888 KB
testcase_13 AC 43 ms
59,336 KB
testcase_14 AC 43 ms
59,304 KB
testcase_15 AC 38 ms
52,816 KB
testcase_16 AC 211 ms
101,300 KB
testcase_17 AC 416 ms
122,868 KB
testcase_18 AC 279 ms
111,268 KB
testcase_19 AC 150 ms
95,724 KB
testcase_20 AC 157 ms
97,708 KB
testcase_21 AC 450 ms
142,472 KB
testcase_22 AC 455 ms
142,248 KB
testcase_23 AC 447 ms
142,372 KB
testcase_24 AC 444 ms
142,532 KB
testcase_25 AC 442 ms
142,228 KB
testcase_26 AC 442 ms
142,252 KB
testcase_27 AC 452 ms
142,904 KB
testcase_28 AC 439 ms
142,760 KB
testcase_29 AC 442 ms
142,392 KB
testcase_30 AC 435 ms
142,508 KB
testcase_31 AC 434 ms
142,096 KB
testcase_32 AC 277 ms
142,508 KB
testcase_33 AC 275 ms
142,100 KB
testcase_34 AC 289 ms
142,236 KB
testcase_35 AC 293 ms
142,488 KB
testcase_36 AC 38 ms
53,236 KB
testcase_37 AC 38 ms
52,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

for i in U[:K]:
    S[i]="A"

print(*S,sep="")
0