結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー 河野竜也河野竜也
提出日時 2022-06-22 20:09:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 787 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 55,996 KB
最終ジャッジ日時 2024-11-06 06:24:30
合計ジャッジ時間 18,957 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 31 ms
11,008 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 328 ms
33,804 KB
testcase_17 AC 605 ms
53,312 KB
testcase_18 AC 407 ms
43,316 KB
testcase_19 AC 174 ms
23,744 KB
testcase_20 AC 202 ms
25,464 KB
testcase_21 AC 787 ms
55,740 KB
testcase_22 AC 595 ms
55,744 KB
testcase_23 AC 679 ms
55,800 KB
testcase_24 AC 628 ms
55,896 KB
testcase_25 AC 612 ms
55,748 KB
testcase_26 AC 663 ms
55,904 KB
testcase_27 AC 684 ms
55,908 KB
testcase_28 AC 624 ms
55,772 KB
testcase_29 AC 663 ms
55,868 KB
testcase_30 AC 653 ms
55,748 KB
testcase_31 AC 615 ms
55,996 KB
testcase_32 AC 332 ms
49,476 KB
testcase_33 AC 334 ms
49,500 KB
testcase_34 AC 344 ms
49,476 KB
testcase_35 AC 344 ms
49,632 KB
testcase_36 AC 30 ms
10,752 KB
testcase_37 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
l=[(a[i]-b[i],i) for i in range(n)]
ans=["B"]*n
l.sort(reverse=True)
for p in range(k):
  _,i=l[p]
  ans[i]="A"
print(''.join(ans))
0