結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー DrDrpilotDrDrpilot
提出日時 2022-02-25 12:53:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 863 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 58,212 KB
最終ジャッジ日時 2024-07-03 06:29:30
合計ジャッジ時間 19,326 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 28 ms
10,624 KB
testcase_12 AC 27 ms
10,624 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 28 ms
11,008 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 316 ms
35,088 KB
testcase_17 AC 655 ms
56,488 KB
testcase_18 AC 422 ms
45,112 KB
testcase_19 AC 169 ms
24,384 KB
testcase_20 AC 182 ms
26,120 KB
testcase_21 AC 685 ms
57,988 KB
testcase_22 AC 609 ms
58,180 KB
testcase_23 AC 674 ms
57,960 KB
testcase_24 AC 617 ms
58,084 KB
testcase_25 AC 611 ms
58,080 KB
testcase_26 AC 863 ms
58,212 KB
testcase_27 AC 690 ms
58,052 KB
testcase_28 AC 635 ms
58,176 KB
testcase_29 AC 687 ms
58,076 KB
testcase_30 AC 709 ms
58,084 KB
testcase_31 AC 627 ms
58,084 KB
testcase_32 AC 350 ms
51,656 KB
testcase_33 AC 356 ms
51,904 KB
testcase_34 AC 363 ms
51,908 KB
testcase_35 AC 358 ms
51,812 KB
testcase_36 AC 26 ms
10,624 KB
testcase_37 AC 26 ms
10,624 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.sort(reverse=True)
ans=['B']*n
for i in range(k):
    ans[l[i][1]]='A'
print(''.join(ans))
0