結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー hir355hir355
提出日時 2021-10-29 21:37:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 699 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 139,424 KB
最終ジャッジ日時 2024-10-07 10:25:43
合計ジャッジ時間 18,592 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,384 KB
testcase_01 AC 37 ms
52,272 KB
testcase_02 AC 38 ms
52,292 KB
testcase_03 AC 38 ms
52,544 KB
testcase_04 AC 38 ms
52,808 KB
testcase_05 AC 37 ms
52,956 KB
testcase_06 AC 37 ms
52,884 KB
testcase_07 AC 38 ms
52,608 KB
testcase_08 AC 39 ms
54,232 KB
testcase_09 AC 39 ms
52,760 KB
testcase_10 AC 38 ms
52,544 KB
testcase_11 AC 44 ms
59,828 KB
testcase_12 AC 39 ms
53,244 KB
testcase_13 AC 44 ms
60,000 KB
testcase_14 AC 45 ms
61,696 KB
testcase_15 AC 40 ms
53,372 KB
testcase_16 AC 353 ms
96,684 KB
testcase_17 AC 639 ms
116,176 KB
testcase_18 AC 481 ms
105,884 KB
testcase_19 AC 212 ms
93,904 KB
testcase_20 AC 232 ms
96,584 KB
testcase_21 AC 699 ms
138,824 KB
testcase_22 AC 689 ms
139,332 KB
testcase_23 AC 684 ms
138,972 KB
testcase_24 AC 699 ms
138,784 KB
testcase_25 AC 694 ms
139,208 KB
testcase_26 AC 695 ms
139,180 KB
testcase_27 AC 695 ms
139,084 KB
testcase_28 AC 688 ms
138,820 KB
testcase_29 AC 691 ms
139,424 KB
testcase_30 AC 688 ms
138,844 KB
testcase_31 AC 685 ms
138,428 KB
testcase_32 AC 395 ms
138,756 KB
testcase_33 AC 391 ms
139,052 KB
testcase_34 AC 406 ms
138,828 KB
testcase_35 AC 408 ms
139,076 KB
testcase_36 AC 38 ms
51,624 KB
testcase_37 AC 38 ms
52,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
c = [None] * n
for i in range(n):
    c[i] = (a[i] - b[i], i)
c.sort(reverse=True)
ans = [''] * n
for i in range(n):
    x, j = c[i]
    if i < k:
        ans[j] = 'A'
    else:
        ans[j] = 'B'
print(*ans, sep='')
0