結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー ThetaTheta
提出日時 2022-10-26 19:30:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 779 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 55,916 KB
最終ジャッジ日時 2024-07-04 08:16:45
合計ジャッジ時間 18,352 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 277 ms
33,644 KB
testcase_17 AC 529 ms
53,400 KB
testcase_18 AC 403 ms
43,236 KB
testcase_19 AC 141 ms
23,756 KB
testcase_20 AC 157 ms
25,224 KB
testcase_21 AC 576 ms
55,788 KB
testcase_22 AC 579 ms
55,884 KB
testcase_23 AC 575 ms
55,916 KB
testcase_24 AC 596 ms
55,796 KB
testcase_25 AC 578 ms
55,652 KB
testcase_26 AC 584 ms
55,568 KB
testcase_27 AC 588 ms
55,792 KB
testcase_28 AC 595 ms
55,660 KB
testcase_29 AC 590 ms
55,792 KB
testcase_30 AC 591 ms
55,784 KB
testcase_31 AC 779 ms
55,916 KB
testcase_32 AC 313 ms
49,520 KB
testcase_33 AC 312 ms
49,608 KB
testcase_34 AC 329 ms
49,388 KB
testcase_35 AC 326 ms
49,512 KB
testcase_36 AC 28 ms
10,752 KB
testcase_37 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    pattern = ["" for _ in range(N)]
    diff = [(a - b, idx) for idx, (a, b) in enumerate(zip(A, B))]
    diff.sort(reverse=True)
    for idx, (_, elm_idx) in enumerate(diff):
        if idx < K:
            pattern[elm_idx] = "A"
        else:
            pattern[elm_idx] = "B"

    print("".join(pattern))


if __name__ == "__main__":
    main()
0