結果

問題 No.717 ファッションへのこだわり
ユーザー MaboyMaboy
提出日時 2021-06-22 01:03:58
言語 Swift
(5.10.0)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 1,568 ms
コンパイル使用メモリ 184,984 KB
実行使用メモリ 17,104 KB
最終ジャッジ日時 2024-06-22 23:00:47
合計ジャッジ時間 2,589 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
16,896 KB
testcase_01 AC 10 ms
16,768 KB
testcase_02 AC 11 ms
16,896 KB
testcase_03 AC 11 ms
16,640 KB
testcase_04 AC 11 ms
16,768 KB
testcase_05 AC 10 ms
16,896 KB
testcase_06 AC 11 ms
16,896 KB
testcase_07 AC 16 ms
16,896 KB
testcase_08 AC 22 ms
17,104 KB
testcase_09 AC 24 ms
17,060 KB
testcase_10 AC 15 ms
17,024 KB
testcase_11 AC 17 ms
17,024 KB
testcase_12 AC 19 ms
17,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import Foundation

let n = readLine()!.split(separator: " ").map{Int($0)!}
var t = readLine()!
var b = readLine()!
var ta = t.count - t.replacingOccurrences(of: "A", with: "").count
var tb = t.count - ta
var ba = b.count - b.replacingOccurrences(of: "A", with: "").count
var bb = b.count - ba

print([ta,ba].min()! + [tb,bb].min()!)
0