- 数字游戏
题解
- 2024-8-16 9:16:57 @
AC记录 https://hydro.ac/d/atcoder/record/66bea858b385d8ada2dd33b4
#include <bits/stdc++.h>
#include <algorithm>
#define endl '\n';
const int N = 1e6 + 10;
const int M = 2e6 + 10;
const int P = 998244353;
const int Base = 3221225477;
const int INF = 0x3f3f3f3f3f3f3f3f;
int mod(int x)
{
return x % P;
}
using namespace std;
string s;
signed main()
{
cin >> s;
for(int i = 0;i < s.size();i++)
{
int t = count(s.begin(),s.end(),s[i]);//count函数
if(t % 2 != 0)
{
cout << "No" << endl;
return 0;
}
}
cout << "Yes" << endl;
return 0;
}
0 条评论
目前还没有评论...
信息
- ID
- 423
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 10
- 标签
- 递交数
- 5
- 已通过
- 4
- 上传者