QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#343024 | #8248. Is Y a Vowel? | ElTeeran_ElHayga# | AC ✓ | 0ms | 3836kb | C++20 | 1.2kb | 2024-03-01 21:05:36 | 2024-03-01 21:05:36 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef vector<int> vi;
#define fi first
#define se second
#define pp push_back
#define all(x) (x).begin(), (x).end()
#define Ones(n) __builtin_popcount(n)
#define endl '\n'
#define mem(arrr, xx) memset(arrr,xx,sizeof arrr)
//#define int long long
#define debug(x) cout << (#x) << " = " << x << endl
void Gamal() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
#ifdef Clion
freopen("input.txt", "r", stdin), freopen("output.txt", "w", stdout);
#endif
}
int dx[] = {+0, +0, -1, +1, +1, +1, -1, -1};
int dy[] = {-1, +1, +0, +0, +1, -1, +1, -1};
const double EPS = 1e-9;
const ll OO = 0X3F3F3F3F3F3F3F3F;
const int N = 2e5 + 5, INF = INT_MAX, MOD = 1e9 + 7, LOG = 20;
void solve() {
set<int>st = {'a','e','i','o','u'};
int cnt = 0,y = 0;
string s;cin >> s;
for(auto x:s){
if(st.count(x))cnt++;
else if(x == 'y')y++;
}
cout << cnt << ' ' << cnt + y;
}
signed main() {
Gamal();
int t = 1;
// cin >> t;
while (t--) {
solve();
}
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3536kb
input:
asdfiy
output:
2 3
result:
ok single line: '2 3'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3536kb
input:
asdeyy
output:
2 4
result:
ok single line: '2 4'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3544kb
input:
y
output:
0 1
result:
ok single line: '0 1'
Test #4:
score: 0
Accepted
time: 0ms
memory: 3536kb
input:
masiwbtuqcbhfebhiehrfynodgmdujstvivcamakuqsulxjfni
output:
14 15
result:
ok single line: '14 15'
Test #5:
score: 0
Accepted
time: 0ms
memory: 3592kb
input:
hbbfiriglpvpzhqgloaezhbbduyeppuydieusencegnaoxigus
output:
17 19
result:
ok single line: '17 19'
Test #6:
score: 0
Accepted
time: 0ms
memory: 3488kb
input:
qwerty
output:
1 2
result:
ok single line: '1 2'
Test #7:
score: 0
Accepted
time: 0ms
memory: 3532kb
input:
yyyyy
output:
0 5
result:
ok single line: '0 5'
Test #8:
score: 0
Accepted
time: 0ms
memory: 3836kb
input:
asde
output:
2 2
result:
ok single line: '2 2'
Test #9:
score: 0
Accepted
time: 0ms
memory: 3764kb
input:
qwqwplkjhgfdsxncmnbvzxc
output:
0 0
result:
ok single line: '0 0'
Test #10:
score: 0
Accepted
time: 0ms
memory: 3572kb
input:
aiuoefgh
output:
5 5
result:
ok single line: '5 5'