CSES - Putka Open 2015 – finaali - Results
Submission details
Task:Sanat
Sender:
Submission time:2015-12-20 16:49:11 +0200
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#1ACCEPTED0
Test results
testverdicttimescore
#1ACCEPTED0.06 s0details

Code

#include <bits/stdc++.h>
#define F first
#define S second
using namespace std;
typedef long long ll;
typedef long double ld;

int main(){
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	char c1='a';
	char c2='e';
	int n;
	cin>>n;
	for (int i=0;i<n;i++){
		int t=0;
		string s;
		cin>>s;
		for (char c:s){
			if (c==c1){
				t--;
			}
			if (c==c2){
				t++;
			}
		}
		if (t==0){
			if (rand()%2==0){
				cout<<"10-4\n";
			}
			else{
				cout<<"QAQ\n";
			}
		}
		else{
			if (t>0){
				cout<<"10-4\n";
			}
			else{
				cout<<"QAQ\n";
			}
		}
	}
}

Test details

Test 1

Verdict: ACCEPTED

input
95000
pursua
zoomata
mantelilastu
jamming
...

correct output
10-4
10-4
10-4
QAQ
QAQ
...

user output
QAQ
QAQ
QAQ
QAQ
QAQ
...