結果
| 問題 | No.717 ファッションへのこだわり |
| コンテスト | |
| ユーザー |
CELICA
|
| 提出日時 | 2020-10-23 08:33:35 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 2,000 ms |
| + 452µs | |
| コード長 | 414 bytes |
| 記録 | |
| コンパイル時間 | 943 ms |
| コンパイル使用メモリ | 182,384 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-08-21 13:25:13 |
| 合計ジャッジ時間 | 2,732 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
#include <bits/stdc++.h>
using ll = long long;
using namespace std;
int main()
{
cin.tie(nullptr);
ios::sync_with_stdio(false);
int n, m;
cin >> n >> m;
string s,t;
cin >> s >> t;
int a1{0},a2{0};
for(const auto& it:s)
if (it=='A') ++a1;
for(const auto& it:t)
if (it=='A') ++a2;
cout << min(a1,a2) + min(n-a1,m-a2) << "\n";
return 0;
}
CELICA