結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー titiatitia
提出日時 2021-10-29 22:27:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 651 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 55,072 KB
最終ジャッジ日時 2024-10-07 12:04:27
合計ジャッジ時間 17,120 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 31 ms
10,880 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 311 ms
33,492 KB
testcase_17 AC 590 ms
52,700 KB
testcase_18 AC 393 ms
42,872 KB
testcase_19 AC 161 ms
23,484 KB
testcase_20 AC 187 ms
25,100 KB
testcase_21 AC 623 ms
54,940 KB
testcase_22 AC 577 ms
55,072 KB
testcase_23 AC 651 ms
55,068 KB
testcase_24 AC 603 ms
54,932 KB
testcase_25 AC 589 ms
54,912 KB
testcase_26 AC 638 ms
55,064 KB
testcase_27 AC 640 ms
54,900 KB
testcase_28 AC 603 ms
54,940 KB
testcase_29 AC 631 ms
54,904 KB
testcase_30 AC 637 ms
54,908 KB
testcase_31 AC 589 ms
54,940 KB
testcase_32 AC 313 ms
48,764 KB
testcase_33 AC 317 ms
48,792 KB
testcase_34 AC 332 ms
48,788 KB
testcase_35 AC 332 ms
48,640 KB
testcase_36 AC 30 ms
10,752 KB
testcase_37 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

X=[(A[i]-B[i],i) for i in range(N)]
X.sort(reverse=True)

ANS=["B"]*N

for i in range(K):
    ANS[X[i][1]]="A"

print("".join(ANS))
    


0