結果

問題 No.717 ファッションへのこだわり
ユーザー potoooooooopotoooooooo
提出日時 2018-07-27 23:02:25
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 379 bytes
コンパイル時間 1,389 ms
コンパイル使用メモリ 166,440 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-05 04:32:51
合計ジャッジ時間 1,962 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
  int n, m; cin >> n >> m;
  string s, t; cin >> s >> t;
  int sa = 0; int sb = 0; int ta = 0; int tb = 0;
  for (int i = 0; i < n; i++){
    if (s[i] == 'A') sa++;
    else sb++;
  }
  for (int i = 0; i < m; i++){
    if (t[i] == 'A') ta++;
    else tb++;
  }
  cout << min(sa, ta) + min(sb, tb) << endl;
  return 0;
}
0