[模拟] aw3694. A还是B(模拟+水题+aw周赛004_1)
Posted Ypuyu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[模拟] aw3694. A还是B(模拟+水题+aw周赛004_1)相关的知识,希望对你有一定的参考价值。
1. 题目来源
链接:3694. A还是B
2. 题目解析
按题模拟就行了。
时间复杂度: O ( n ) O(n) O(n)
空间复杂度: O ( 1 ) O(1) O(1)
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
string s;
cin >> s;
int a = 0, b = 0;
for (char c : s)
if (c == 'A') a ++ ;
else b ++ ;
if (a > b) puts("A");
else if (a < b) puts("B");
else puts("T");
return 0;
}
以上是关于[模拟] aw3694. A还是B(模拟+水题+aw周赛004_1)的主要内容,如果未能解决你的问题,请参考以下文章