結果

問題 No.1724 [Cherry 3rd Tune A] Lápiz labial de Sonia
ユーザー simansiman
提出日時 2021-10-31 04:53:29
言語 Ruby
(3.3.0)
結果
AC  
実行時間 490 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 46,236 KB
最終ジャッジ日時 2024-10-07 21:16:57
合計ジャッジ時間 17,915 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,160 KB
testcase_01 AC 88 ms
12,032 KB
testcase_02 AC 88 ms
12,160 KB
testcase_03 AC 90 ms
12,032 KB
testcase_04 AC 92 ms
12,160 KB
testcase_05 AC 90 ms
12,160 KB
testcase_06 AC 89 ms
12,160 KB
testcase_07 AC 89 ms
12,160 KB
testcase_08 AC 87 ms
12,160 KB
testcase_09 AC 94 ms
12,160 KB
testcase_10 AC 88 ms
12,032 KB
testcase_11 AC 92 ms
12,160 KB
testcase_12 AC 88 ms
12,160 KB
testcase_13 AC 90 ms
12,160 KB
testcase_14 AC 90 ms
12,032 KB
testcase_15 AC 90 ms
12,032 KB
testcase_16 AC 293 ms
32,896 KB
testcase_17 AC 417 ms
44,584 KB
testcase_18 AC 303 ms
33,920 KB
testcase_19 AC 191 ms
24,320 KB
testcase_20 AC 220 ms
24,704 KB
testcase_21 AC 477 ms
46,200 KB
testcase_22 AC 387 ms
42,496 KB
testcase_23 AC 487 ms
46,236 KB
testcase_24 AC 411 ms
44,040 KB
testcase_25 AC 440 ms
43,392 KB
testcase_26 AC 490 ms
46,208 KB
testcase_27 AC 478 ms
46,216 KB
testcase_28 AC 403 ms
43,744 KB
testcase_29 AC 460 ms
46,116 KB
testcase_30 AC 484 ms
46,204 KB
testcase_31 AC 375 ms
42,496 KB
testcase_32 AC 388 ms
45,348 KB
testcase_33 AC 388 ms
45,312 KB
testcase_34 AC 394 ms
45,316 KB
testcase_35 AC 400 ms
45,440 KB
testcase_36 AC 90 ms
12,160 KB
testcase_37 AC 89 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:9: warning: assigned but unused variable - a
Main.rb:9: warning: assigned but unused variable - b
Syntax OK

ソースコード

diff #

N, K = gets.split.map(&:to_i)
A = gets.split.map(&:to_i)
B = gets.split.map(&:to_i)
G = A.zip(B).map.with_index { |(a, b), i| [a, b, i] }
G.sort_by! { |a, b, _| b - a }
ans = Array.new(N, 'B')

K.times do |k|
  a, b, i = G[k]
  ans[i] = 'A'
end

puts ans.join
0