結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー horitaka1999horitaka1999
提出日時 2021-10-29 22:56:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 379 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 146,916 KB
最終ジャッジ日時 2024-10-07 12:36:42
合計ジャッジ時間 13,280 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 38 ms
51,456 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 42 ms
58,496 KB
testcase_12 AC 38 ms
52,480 KB
testcase_13 AC 42 ms
58,240 KB
testcase_14 AC 41 ms
58,240 KB
testcase_15 AC 37 ms
52,480 KB
testcase_16 AC 197 ms
103,732 KB
testcase_17 AC 358 ms
129,292 KB
testcase_18 AC 268 ms
116,444 KB
testcase_19 AC 135 ms
96,128 KB
testcase_20 AC 144 ms
95,232 KB
testcase_21 AC 373 ms
146,148 KB
testcase_22 AC 369 ms
146,272 KB
testcase_23 AC 375 ms
146,268 KB
testcase_24 AC 379 ms
146,844 KB
testcase_25 AC 360 ms
146,012 KB
testcase_26 AC 375 ms
146,048 KB
testcase_27 AC 370 ms
146,520 KB
testcase_28 AC 358 ms
146,152 KB
testcase_29 AC 360 ms
146,156 KB
testcase_30 AC 358 ms
146,284 KB
testcase_31 AC 374 ms
146,404 KB
testcase_32 AC 237 ms
146,916 KB
testcase_33 AC 236 ms
146,028 KB
testcase_34 AC 249 ms
146,336 KB
testcase_35 AC 249 ms
146,284 KB
testcase_36 AC 38 ms
51,712 KB
testcase_37 AC 37 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
board = []
for i in range(N):
    board.append((A[i]-B[i],i))
board.sort(key = lambda x:x[0])
board.reverse()
ans_A = [False] * N
for i in range(K):
    t,index = board[i]
    ans_A[index] = True
ANS = []
for i in range(N):
    if ans_A[i]:
        ANS.append( 'A')
    else:
        ANS.append('B')
print(''.join(ANS))

0