CSES - Datatähti 2018 peili - Results
Submission details
Task:Merkkijono
Sender:ankka22
Submission time:2017-10-02 22:38:24 +0300
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.23 sdetails
#2ACCEPTED0.07 sdetails
#3ACCEPTED0.04 sdetails
#40.19 sdetails
#5--details
#60.19 sdetails
#70.18 sdetails
#80.21 sdetails
#90.20 sdetails
#100.20 sdetails

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:11:30: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int i = 0; i < s.size(); i++) {
                              ^
input/code.cpp:19:32: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for (int b = i; b < s.size(); b++) {
                                ^

Code

#include <iostream>
#include <string>
using namespace std;
string s;
bool ok;
char t;
int main() {
	cin >> s;
	while (1) {
		ok = true;
		for (int i = 0; i < s.size(); i++) {
			if (s.size() < 3) break;
			//cout << s.at(i) << ", " << s.at(i+1) << endl;
			if (s.at(i) == s.at(i+1)) {
				ok = false;
				//cout << s << endl;
				int alku = i;
				int loppu;
				for (int b = i; b < s.size(); b++) {
					if (s.at(b) != s.at(i)) {
						loppu = b - 1;
						break;
					}
				}
				//cout << alku << ", " << loppu << endl;
				s.erase(s.begin() + alku, s.begin() + loppu + 1);
				//cout << s << endl;
				break;
			}	
		}
		if (ok) break;
	}
	if (s.size() == 2 && s.at(0) == s.at(1)) s.clear();
	cout << s << endl;
}	
//DDDDJJJJGGGDDDDROOOE
//CAACCB

Test details

Test 1

Verdict:

input
ABABABABABABABABABABABABABABAB...

correct output
ABABABABABABABABABABABABABABAB...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::out_of_range'
  what():  basic_string::at

Test 2

Verdict: ACCEPTED

input
AABBAABBAABBAABBAABBAABBAABBAA...

correct output
(empty)

user output
(empty)

Test 3

Verdict: ACCEPTED

input
ABABABABABABABABABABABABABABAB...

correct output
(empty)

user output
(empty)

Test 4

Verdict:

input
BBABABBBBBAABBBABABABBBBAAABAB...

correct output
BAB

user output
(empty)

Error:
terminate called after throwing an instance of 'std::out_of_range'
  what():  basic_string::at

Test 5

Verdict:

input
ACDCBBACDBBBACAACBBDBADBAABABA...

correct output
ACDCACDADBADABACACDCADADABABCA...

user output
(empty)

Test 6

Verdict:

input
EETFHIJOGACDHMGVFJCMETMZDEITTR...

correct output
TFHIJOGACDHMGVFJCMETMZDEIROTET...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::out_of_range'
  what():  basic_string::at

Test 7

Verdict:

input
GOONLAHLYPRFCZKIKSJWAWWYJJPCDB...

correct output
GNLAHLYPRFCZKIKSJWAYPCDNWYMRCE...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::out_of_range'
  what():  basic_string::at

Test 8

Verdict:

input
PISHWMOTCDDZFRMYMOMYDYYGJZIQHS...

correct output
PISHWMOTCZFRMYMOMYDGJZIQHSVAOK...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::out_of_range'
  what():  basic_string::at

Test 9

Verdict:

input
QUVVTPXAMWWODFXRONJODPGBTCISGM...

correct output
QUTPXAMODFXRONJODPGBTCISGMVRBW...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::out_of_range'
  what():  basic_string::at

Test 10

Verdict:

input
POXHAHYEZTLYNFSLABODMRNKDSKROZ...

correct output
POXHAHYEZTLYNFSLABODMRNKDSKROZ...

user output
(empty)

Error:
terminate called after throwing an instance of 'std::out_of_range'
  what():  basic_string::at