結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー minimumminimum
提出日時 2021-10-29 21:30:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 663 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 138,436 KB
最終ジャッジ日時 2024-10-07 10:05:34
合計ジャッジ時間 17,617 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,940 KB
testcase_01 AC 36 ms
51,752 KB
testcase_02 AC 36 ms
53,180 KB
testcase_03 AC 38 ms
52,400 KB
testcase_04 AC 37 ms
52,480 KB
testcase_05 AC 36 ms
52,080 KB
testcase_06 AC 37 ms
52,952 KB
testcase_07 AC 37 ms
52,004 KB
testcase_08 AC 38 ms
52,696 KB
testcase_09 AC 36 ms
52,684 KB
testcase_10 AC 37 ms
53,612 KB
testcase_11 AC 42 ms
60,844 KB
testcase_12 AC 39 ms
53,132 KB
testcase_13 AC 41 ms
59,116 KB
testcase_14 AC 43 ms
60,372 KB
testcase_15 AC 38 ms
53,184 KB
testcase_16 AC 326 ms
96,692 KB
testcase_17 AC 610 ms
116,192 KB
testcase_18 AC 466 ms
105,752 KB
testcase_19 AC 199 ms
93,768 KB
testcase_20 AC 217 ms
96,664 KB
testcase_21 AC 655 ms
138,016 KB
testcase_22 AC 661 ms
138,404 KB
testcase_23 AC 647 ms
138,152 KB
testcase_24 AC 651 ms
137,904 KB
testcase_25 AC 655 ms
138,308 KB
testcase_26 AC 661 ms
138,148 KB
testcase_27 AC 653 ms
138,436 KB
testcase_28 AC 656 ms
138,160 KB
testcase_29 AC 663 ms
138,144 KB
testcase_30 AC 652 ms
138,172 KB
testcase_31 AC 657 ms
138,428 KB
testcase_32 AC 325 ms
138,300 KB
testcase_33 AC 325 ms
138,020 KB
testcase_34 AC 349 ms
138,040 KB
testcase_35 AC 352 ms
138,416 KB
testcase_36 AC 38 ms
53,160 KB
testcase_37 AC 38 ms
52,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

ans = [''] * N
for i in range(N):
    _, num = C[i]
    if i < K:
        ans[num] = 'A'
    else:
        ans[num] = 'B'
print(''.join(ans))
0