- Seats
玄关
- 2024-10-25 19:23:40 @
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define endl '\n';
#define rep(n) for(int i = 0;i < (n);i++)
int a,b;
string S;
signed main()
{
ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
cin >> a >> b >> S;
if(a + b > S.size())
{
cout << "-1" << endl;
}else if(a + b <= S.size())
{
int s = 0;
int t = 0;
for(int i = 0;i < S.size();i++)
{
if(S[i] == 'S')
{
s++;
}else if(S[i] == 'T')
{
t++;
}
}
}
return 0;
}
2 条评论
-
Routine LV 1 @ 2024-10-26 15:55:31
6
-
2024-10-25 20:37:24@
6,你告诉我这怎么玄关
- 1
信息
- ID
- 41
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 2
- 标签
- 递交数
- 928
- 已通过
- 322
- 上传者