結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー flippergoflippergo
提出日時 2024-12-29 16:10:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 522 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 139,992 KB
最終ジャッジ日時 2024-12-29 16:10:42
合計ジャッジ時間 18,628 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
52,096 KB
testcase_01 AC 44 ms
51,712 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 41 ms
51,584 KB
testcase_04 AC 44 ms
51,968 KB
testcase_05 AC 45 ms
51,968 KB
testcase_06 AC 45 ms
51,712 KB
testcase_07 AC 44 ms
51,840 KB
testcase_08 AC 45 ms
51,584 KB
testcase_09 AC 46 ms
51,968 KB
testcase_10 AC 45 ms
51,456 KB
testcase_11 AC 51 ms
57,984 KB
testcase_12 AC 46 ms
52,352 KB
testcase_13 AC 51 ms
58,112 KB
testcase_14 AC 51 ms
58,368 KB
testcase_15 AC 47 ms
52,352 KB
testcase_16 AC 244 ms
96,512 KB
testcase_17 AC 432 ms
120,332 KB
testcase_18 AC 327 ms
110,056 KB
testcase_19 AC 169 ms
95,488 KB
testcase_20 AC 170 ms
97,280 KB
testcase_21 AC 522 ms
139,992 KB
testcase_22 AC 508 ms
139,868 KB
testcase_23 AC 441 ms
139,980 KB
testcase_24 AC 487 ms
139,732 KB
testcase_25 AC 459 ms
139,740 KB
testcase_26 AC 470 ms
139,988 KB
testcase_27 AC 457 ms
139,992 KB
testcase_28 AC 490 ms
139,984 KB
testcase_29 AC 461 ms
139,728 KB
testcase_30 AC 442 ms
139,880 KB
testcase_31 AC 481 ms
139,728 KB
testcase_32 AC 287 ms
139,856 KB
testcase_33 AC 307 ms
139,864 KB
testcase_34 AC 314 ms
139,860 KB
testcase_35 AC 314 ms
139,864 KB
testcase_36 AC 46 ms
51,584 KB
testcase_37 AC 46 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
C = sorted([(i,A[i]-B[i]) for i in range(N)],key=lambda x:-x[1])
S = [0]*N
ans = 0
for i in range(N):
    if i<K:
        S[C[i][0]] = "A"
    else:
        S[C[i][0]] = "B"
print("".join(S))
0