結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー kohei2019kohei2019
提出日時 2023-06-09 16:09:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 680 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 148,644 KB
最終ジャッジ日時 2024-06-10 10:00:01
合計ジャッジ時間 19,163 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,136 KB
testcase_01 AC 38 ms
52,340 KB
testcase_02 AC 37 ms
52,320 KB
testcase_03 AC 37 ms
51,880 KB
testcase_04 AC 37 ms
53,744 KB
testcase_05 AC 36 ms
52,836 KB
testcase_06 AC 37 ms
53,080 KB
testcase_07 AC 38 ms
52,796 KB
testcase_08 AC 37 ms
52,552 KB
testcase_09 AC 38 ms
52,624 KB
testcase_10 AC 38 ms
52,608 KB
testcase_11 AC 42 ms
59,284 KB
testcase_12 AC 39 ms
54,176 KB
testcase_13 AC 43 ms
59,524 KB
testcase_14 AC 44 ms
61,540 KB
testcase_15 AC 40 ms
54,716 KB
testcase_16 AC 345 ms
101,020 KB
testcase_17 AC 633 ms
128,420 KB
testcase_18 AC 485 ms
114,552 KB
testcase_19 AC 212 ms
96,936 KB
testcase_20 AC 228 ms
95,112 KB
testcase_21 AC 677 ms
148,024 KB
testcase_22 AC 674 ms
148,260 KB
testcase_23 AC 664 ms
148,228 KB
testcase_24 AC 673 ms
148,476 KB
testcase_25 AC 672 ms
148,284 KB
testcase_26 AC 675 ms
148,256 KB
testcase_27 AC 677 ms
148,288 KB
testcase_28 AC 679 ms
148,156 KB
testcase_29 AC 680 ms
148,392 KB
testcase_30 AC 679 ms
148,144 KB
testcase_31 AC 663 ms
148,644 KB
testcase_32 AC 383 ms
148,284 KB
testcase_33 AC 385 ms
148,464 KB
testcase_34 AC 396 ms
148,540 KB
testcase_35 AC 403 ms
148,516 KB
testcase_36 AC 37 ms
52,192 KB
testcase_37 AC 36 ms
52,872 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