Task: | Merkkijono |
Sender: | ankka22 |
Submission time: | 2017-10-02 22:38:24 +0300 |
Language: | C++ |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | RUNTIME ERROR | 0 |
test | verdict | time | |
---|---|---|---|
#1 | RUNTIME ERROR | 0.23 s | details |
#2 | ACCEPTED | 0.07 s | details |
#3 | ACCEPTED | 0.04 s | details |
#4 | RUNTIME ERROR | 0.19 s | details |
#5 | TIME LIMIT EXCEEDED | -- | details |
#6 | RUNTIME ERROR | 0.19 s | details |
#7 | RUNTIME ERROR | 0.18 s | details |
#8 | RUNTIME ERROR | 0.21 s | details |
#9 | RUNTIME ERROR | 0.20 s | details |
#10 | RUNTIME ERROR | 0.20 s | details |
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: RUNTIME ERROR
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: RUNTIME ERROR
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: TIME LIMIT EXCEEDED
input |
---|
ACDCBBACDBBBACAACBBDBADBAABABA... |
correct output |
---|
ACDCACDADBADABACACDCADADABABCA... |
user output |
---|
(empty) |
Test 6
Verdict: RUNTIME ERROR
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: RUNTIME ERROR
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: RUNTIME ERROR
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: RUNTIME ERROR
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: RUNTIME ERROR
input |
---|
POXHAHYEZTLYNFSLABODMRNKDSKROZ... |
correct output |
---|
POXHAHYEZTLYNFSLABODMRNKDSKROZ... |
user output |
---|
(empty) |
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::at