結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー kohei2019kohei2019
提出日時 2023-06-09 16:09:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 639 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 148,844 KB
最終ジャッジ日時 2025-01-01 20:35:28
合計ジャッジ時間 18,458 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,392 KB
testcase_01 AC 29 ms
52,828 KB
testcase_02 AC 29 ms
52,292 KB
testcase_03 AC 30 ms
52,900 KB
testcase_04 AC 31 ms
52,716 KB
testcase_05 AC 33 ms
52,668 KB
testcase_06 AC 31 ms
52,288 KB
testcase_07 AC 30 ms
53,920 KB
testcase_08 AC 30 ms
52,636 KB
testcase_09 AC 31 ms
53,364 KB
testcase_10 AC 31 ms
53,368 KB
testcase_11 AC 35 ms
61,480 KB
testcase_12 AC 34 ms
54,524 KB
testcase_13 AC 37 ms
61,168 KB
testcase_14 AC 37 ms
60,232 KB
testcase_15 AC 33 ms
54,384 KB
testcase_16 AC 317 ms
101,388 KB
testcase_17 AC 578 ms
128,828 KB
testcase_18 AC 430 ms
114,424 KB
testcase_19 AC 186 ms
97,080 KB
testcase_20 AC 201 ms
95,504 KB
testcase_21 AC 639 ms
148,716 KB
testcase_22 AC 612 ms
148,684 KB
testcase_23 AC 611 ms
148,692 KB
testcase_24 AC 627 ms
148,824 KB
testcase_25 AC 627 ms
148,692 KB
testcase_26 AC 626 ms
148,696 KB
testcase_27 AC 608 ms
148,696 KB
testcase_28 AC 616 ms
148,688 KB
testcase_29 AC 615 ms
148,844 KB
testcase_30 AC 610 ms
148,560 KB
testcase_31 AC 601 ms
148,696 KB
testcase_32 AC 355 ms
148,676 KB
testcase_33 AC 356 ms
148,716 KB
testcase_34 AC 377 ms
148,744 KB
testcase_35 AC 378 ms
148,688 KB
testcase_36 AC 32 ms
52,464 KB
testcase_37 AC 31 ms
52,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
lsA = list(map(int, input().split()))
lsB = list(map(int, input().split()))
lsALL = []
for i in range(N):
    lsALL.append((lsA[i]-lsB[i],i))
lsALL.sort(reverse=True)
ansls = ['B' for _ in range(N)]
for i in range(K):
    ansls[lsALL[i][1]] = 'A'
print(*ansls,sep='')
0