結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー H3PO4H3PO4
提出日時 2021-10-29 21:37:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 575 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 66,044 KB
最終ジャッジ日時 2024-10-07 10:23:09
合計ジャッジ時間 15,228 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 27 ms
10,880 KB
testcase_12 AC 27 ms
10,624 KB
testcase_13 AC 27 ms
10,880 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 27 ms
10,624 KB
testcase_16 AC 269 ms
38,812 KB
testcase_17 AC 501 ms
62,764 KB
testcase_18 AC 341 ms
51,016 KB
testcase_19 AC 136 ms
26,512 KB
testcase_20 AC 158 ms
28,536 KB
testcase_21 AC 549 ms
65,916 KB
testcase_22 AC 564 ms
66,036 KB
testcase_23 AC 575 ms
65,996 KB
testcase_24 AC 512 ms
65,920 KB
testcase_25 AC 517 ms
66,044 KB
testcase_26 AC 549 ms
65,916 KB
testcase_27 AC 534 ms
65,904 KB
testcase_28 AC 510 ms
66,032 KB
testcase_29 AC 521 ms
66,044 KB
testcase_30 AC 538 ms
65,908 KB
testcase_31 AC 494 ms
66,036 KB
testcase_32 AC 300 ms
59,896 KB
testcase_33 AC 300 ms
59,768 KB
testcase_34 AC 334 ms
59,644 KB
testcase_35 AC 310 ms
59,768 KB
testcase_36 AC 26 ms
10,752 KB
testcase_37 AC 26 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = map(int, input().split())
B = map(int, input().split())
D = [(b - a, i) for i, (a, b) in enumerate(zip(A, B))]
D.sort()

ans = ['B'] * N
for x, i in D[:K]:
    ans[i] = 'A'
print(''.join(map(str, ans)))
0