結果
問題 | No.717 ファッションへのこだわり |
ユーザー | ut0s |
提出日時 | 2019-09-16 08:21:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 688 bytes |
コンパイル時間 | 1,573 ms |
コンパイル使用メモリ | 170,296 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-06 22:59:03 |
合計ジャッジ時間 | 2,207 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
ソースコード
/** @file 717.cpp @title No.717 ファッションへのこだわり - yukicoder @url https://yukicoder.me/problems/no/717 **/ #include <bits/stdc++.h> using namespace std; typedef long long LL; #define ALL(obj) (obj).begin(), (obj).end() #define REP(i, N) for (int i = 0; i < (N); ++i) int main() { int N, M; cin >> N >> M; string S, T; cin >> S >> T; sort(ALL(S)); sort(ALL(T)); int SA = count(ALL(S), 'A'); int SB = count(ALL(S), 'B'); int TA = count(ALL(T), 'A'); int TB = count(ALL(T), 'B'); // cout << SA << "\n"; // cout << SB << "\n"; // cout << TA << "\n"; // cout << TB << "\n"; cout << min(SA, TA) + min(SB, TB) << endl; return 0; }