結果
| 問題 | No.717 ファッションへのこだわり | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2020-04-09 17:25:49 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 3 ms / 2,000 ms | 
| コード長 | 671 bytes | 
| コンパイル時間 | 687 ms | 
| コンパイル使用メモリ | 78,076 KB | 
| 最終ジャッジ日時 | 2025-01-09 15:31:08 | 
| ジャッジサーバーID (参考情報) | judge4 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 10 | 
ソースコード
#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
void solve() {
    {
        int n, m;
        std::cin >> n >> m;
    }
    std::vector<std::vector<int>> cnt(2, std::vector<int>(2, 0));
    for (int i = 0; i < 2; ++i) {
        std::string s;
        std::cin >> s;
        for (int j = 0; j < 2; ++j) {
            cnt[i][j] = std::count(s.begin(), s.end(), 'A' + j);
        }
    }
    int ans = 0;
    for (int j = 0; j < 2; ++j) {
        ans += std::min(cnt[0][j], cnt[1][j]);
    }
    std::cout << ans << std::endl;
}
int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);
    solve();
    return 0;
}
            
            
            
        