結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-10-29 21:59:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 771 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 142,132 KB
最終ジャッジ日時 2024-10-07 11:15:07
合計ジャッジ時間 19,058 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,436 KB
testcase_01 AC 35 ms
51,992 KB
testcase_02 AC 34 ms
52,004 KB
testcase_03 AC 36 ms
53,504 KB
testcase_04 AC 36 ms
52,484 KB
testcase_05 AC 35 ms
52,924 KB
testcase_06 AC 36 ms
52,160 KB
testcase_07 AC 36 ms
52,268 KB
testcase_08 AC 37 ms
52,252 KB
testcase_09 AC 36 ms
52,632 KB
testcase_10 AC 37 ms
53,952 KB
testcase_11 AC 41 ms
59,436 KB
testcase_12 AC 38 ms
53,308 KB
testcase_13 AC 40 ms
59,752 KB
testcase_14 AC 41 ms
59,964 KB
testcase_15 AC 36 ms
52,984 KB
testcase_16 AC 339 ms
108,220 KB
testcase_17 AC 654 ms
121,880 KB
testcase_18 AC 501 ms
124,008 KB
testcase_19 AC 208 ms
94,080 KB
testcase_20 AC 238 ms
95,616 KB
testcase_21 AC 760 ms
141,420 KB
testcase_22 AC 724 ms
141,728 KB
testcase_23 AC 721 ms
141,160 KB
testcase_24 AC 695 ms
141,628 KB
testcase_25 AC 699 ms
141,284 KB
testcase_26 AC 731 ms
141,312 KB
testcase_27 AC 711 ms
141,612 KB
testcase_28 AC 713 ms
141,800 KB
testcase_29 AC 745 ms
141,424 KB
testcase_30 AC 771 ms
141,672 KB
testcase_31 AC 739 ms
141,028 KB
testcase_32 AC 392 ms
141,112 KB
testcase_33 AC 387 ms
142,132 KB
testcase_34 AC 412 ms
141,544 KB
testcase_35 AC 410 ms
141,936 KB
testcase_36 AC 38 ms
51,712 KB
testcase_37 AC 37 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
ans = ["B"]*n
L = [[a-b,i] for i,(a,b) in enumerate(zip(A,B))]
L.sort(reverse=True)
for i in range(k):
    ans[L[i][1]] = "A"
print(*ans,sep="")
0