結果

問題 No.717 ファッションへのこだわり
ユーザー 0w10w1
提出日時 2018-08-29 11:33:52
言語 Ruby
(3.3.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-09-13 04:33:50
合計ジャッジ時間 2,661 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,032 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 89 ms
12,032 KB
testcase_03 AC 89 ms
12,160 KB
testcase_04 AC 88 ms
12,288 KB
testcase_05 AC 87 ms
12,160 KB
testcase_06 AC 92 ms
12,416 KB
testcase_07 AC 98 ms
12,416 KB
testcase_08 AC 103 ms
13,824 KB
testcase_09 AC 101 ms
13,696 KB
testcase_10 AC 97 ms
13,312 KB
testcase_11 AC 98 ms
12,800 KB
testcase_12 AC 96 ms
12,800 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Main.rb:1: warning: assigned but unused variable - m
Syntax OK

ソースコード

diff #

n, m = gets.split.map &:to_i
s = gets.strip
t = gets.strip
puts [s.chars.select { |i| i == ?A } .size, t.chars.select { |i| i == ?A } .size].min + [s.chars.select { |i| i == ?B } .size, t.chars.select { |i| i == ?B } .size].min
0