QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#239642 | #5501. Ctrl+C Ctrl+V | KLPP# | WA | 11ms | 3636kb | C++20 | 715b | 2023-11-04 22:07:06 | 2023-11-04 22:07:06 |
Judging History
answer
#include<bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
typedef long long int lld;
typedef tree<int,null_type,less<int>,rb_tree_tag,tree_order_statistics_node_update> ordered_set;
#define rep(i,a,b) for(int i=a;i<b;i++)
#define trav(a,v) for(auto a:v)
#define all(x) begin(x),end(x)
void solve(){
string a;
cin>>a;
int n=a.size();
int counter=0;
for(int i=0;i<n-4;i++){
if(a[i]=='a'&&a[i+1]=='n'&&a[i+2]=='i'&&a[i+3]=='a'){
a[i+3]='z';
counter++;
}
}
cout<<counter<<'\n';
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
int tt=1;
cin>>tt;
while(tt--){
solve();
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3604kb
input:
3 aniasieurodzilaapotemnicsieniedzialo nicciekawegouanianiagnieszkianialicji jeszczekrotszaautobiografiaani
output:
1 2 0
result:
ok 3 lines
Test #2:
score: -100
Wrong Answer
time: 11ms
memory: 3636kb
input:
10000 aniaanianianianiaviananibnianianianianianiapianianianianianianiaanianianianiananianianianiananifw ananiacnganiaaywbwrkaniahaniaganiaglljaniaouaqrdyaniaypvsgjltrbcvjssrtnehqfzpfvaniahwaniauzncovwfmiqejteiuaniacblxyfikauptesitsitvananianiajndy anianianianianianiaanianianianianiaanianianianianiaa...
output:
13 11 53 16 10 13 35 2 39 7 19 14 47 7 78 34 59 60 21 13 22 18 18 9 77 3 19 14 44 64 18 26 13 4 27 38 9 65 13 27 51 23 3 13 25 69 5 19 32 23 22 13 29 2 23 2 18 21 68 49 21 9 5 6 21 22 77 1 60 54 8 19 51 13 6 18 70 18 22 19 19 4 74 17 26 8 19 77 11 28 72 8 45 20 23 21 15 54 65 14 2 9 10 5 33 78 0 30 ...
result:
wrong answer 33rd lines differ - expected: '14', found: '13'