結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー 小野寺健小野寺健
提出日時 2021-10-30 13:12:21
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,284 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 49,536 KB
最終ジャッジ日時 2024-10-07 13:35:29
合計ジャッジ時間 29,125 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,160 KB
testcase_01 AC 81 ms
12,160 KB
testcase_02 AC 80 ms
12,032 KB
testcase_03 AC 76 ms
12,288 KB
testcase_04 AC 75 ms
12,032 KB
testcase_05 AC 76 ms
12,288 KB
testcase_06 AC 81 ms
12,416 KB
testcase_07 AC 80 ms
12,160 KB
testcase_08 AC 80 ms
12,160 KB
testcase_09 AC 78 ms
12,288 KB
testcase_10 AC 81 ms
12,160 KB
testcase_11 AC 84 ms
12,160 KB
testcase_12 AC 77 ms
12,160 KB
testcase_13 AC 79 ms
12,160 KB
testcase_14 AC 82 ms
12,288 KB
testcase_15 AC 83 ms
12,160 KB
testcase_16 AC 650 ms
32,128 KB
testcase_17 AC 1,135 ms
47,744 KB
testcase_18 AC 865 ms
34,944 KB
testcase_19 AC 403 ms
24,448 KB
testcase_20 AC 425 ms
24,064 KB
testcase_21 AC 1,264 ms
49,152 KB
testcase_22 AC 1,190 ms
45,568 KB
testcase_23 AC 1,258 ms
49,280 KB
testcase_24 AC 1,180 ms
47,488 KB
testcase_25 AC 1,218 ms
46,592 KB
testcase_26 AC 1,252 ms
49,280 KB
testcase_27 AC 1,226 ms
49,536 KB
testcase_28 AC 1,215 ms
46,848 KB
testcase_29 AC 1,284 ms
49,280 KB
testcase_30 AC 1,272 ms
49,280 KB
testcase_31 AC 1,187 ms
44,544 KB
testcase_32 AC 1,108 ms
48,512 KB
testcase_33 AC 1,122 ms
48,512 KB
testcase_34 AC 1,174 ms
48,384 KB
testcase_35 AC 1,159 ms
48,640 KB
testcase_36 AC 81 ms
12,288 KB
testcase_37 AC 80 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, K = gets.split(" ").map{|s| s.to_i}

a = gets.split(" ").map{|s| s.to_i}
b = gets.split(" ").map{|s| s.to_i}

d = a.zip(b).map.with_index{|x, i| [x[0]-x[1], i]}.sort.reverse

ans = ["B"]* N

d[0,K].each{|v, i|
	ans[i] = "A"
}

puts ans.join("")
0