結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー ysys
提出日時 2022-03-09 02:56:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 666 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 148,244 KB
最終ジャッジ日時 2024-07-26 21:18:26
合計ジャッジ時間 19,126 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 38 ms
51,968 KB
testcase_10 AC 39 ms
52,224 KB
testcase_11 AC 42 ms
58,496 KB
testcase_12 AC 39 ms
52,864 KB
testcase_13 AC 42 ms
58,624 KB
testcase_14 AC 42 ms
59,264 KB
testcase_15 AC 42 ms
52,864 KB
testcase_16 AC 333 ms
100,576 KB
testcase_17 AC 616 ms
128,364 KB
testcase_18 AC 458 ms
114,152 KB
testcase_19 AC 200 ms
97,196 KB
testcase_20 AC 218 ms
95,392 KB
testcase_21 AC 652 ms
148,192 KB
testcase_22 AC 666 ms
147,808 KB
testcase_23 AC 660 ms
147,940 KB
testcase_24 AC 659 ms
148,244 KB
testcase_25 AC 661 ms
148,140 KB
testcase_26 AC 653 ms
147,880 KB
testcase_27 AC 661 ms
147,940 KB
testcase_28 AC 661 ms
147,964 KB
testcase_29 AC 660 ms
148,160 KB
testcase_30 AC 659 ms
147,944 KB
testcase_31 AC 663 ms
147,808 KB
testcase_32 AC 354 ms
148,196 KB
testcase_33 AC 351 ms
147,884 KB
testcase_34 AC 369 ms
147,944 KB
testcase_35 AC 365 ms
148,076 KB
testcase_36 AC 38 ms
51,584 KB
testcase_37 AC 37 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
L = []
for j in range(N):
  L.append((A[j] - B[j], j))
L.sort(reverse=True)
ans = ['B'] * N
for j in range(K):
  ans[L[j][1]] = 'A'
print(''.join(ans))

0