結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー mrngmrng
提出日時 2021-11-21 15:31:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 759 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 141,716 KB
最終ジャッジ日時 2024-06-22 21:59:51
合計ジャッジ時間 14,205 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 36 ms
52,736 KB
testcase_03 AC 35 ms
52,480 KB
testcase_04 AC 37 ms
52,480 KB
testcase_05 AC 38 ms
52,608 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 38 ms
52,352 KB
testcase_09 AC 37 ms
52,352 KB
testcase_10 AC 37 ms
52,352 KB
testcase_11 AC 40 ms
59,008 KB
testcase_12 AC 37 ms
52,736 KB
testcase_13 AC 40 ms
58,496 KB
testcase_14 AC 42 ms
59,264 KB
testcase_15 AC 39 ms
53,120 KB
testcase_16 AC 186 ms
96,520 KB
testcase_17 AC 364 ms
120,452 KB
testcase_18 AC 265 ms
116,712 KB
testcase_19 AC 138 ms
95,624 KB
testcase_20 AC 142 ms
97,024 KB
testcase_21 AC 401 ms
141,644 KB
testcase_22 AC 379 ms
141,344 KB
testcase_23 AC 399 ms
141,480 KB
testcase_24 AC 387 ms
141,468 KB
testcase_25 AC 414 ms
141,324 KB
testcase_26 AC 416 ms
141,188 KB
testcase_27 AC 403 ms
141,696 KB
testcase_28 AC 384 ms
141,664 KB
testcase_29 AC 387 ms
141,208 KB
testcase_30 AC 391 ms
141,192 KB
testcase_31 AC 363 ms
141,548 KB
testcase_32 AC 230 ms
141,704 KB
testcase_33 AC 230 ms
141,716 KB
testcase_34 AC 244 ms
141,672 KB
testcase_35 AC 242 ms
141,424 KB
testcase_36 AC 36 ms
52,144 KB
testcase_37 AC 36 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
choice = [1]*n
d = [[a[i]-b[i],i] for i in range(n)]
from operator import itemgetter
d.sort(key=itemgetter(0),reverse=True)
for i in range(k):
	choice[d[i][1]] = 0
print(''.join([chr(ord('A')+i) for i in choice]))
0