| Task: | Merkkijono |
| Sender: | jusola |
| Submission time: | 2021-10-04 10:27:43 +0300 |
| Language: | C++ (C++11) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| test | verdict | time | |
|---|---|---|---|
| #1 | WRONG ANSWER | 0.01 s | details |
| #2 | WRONG ANSWER | 0.01 s | details |
| #3 | ACCEPTED | 0.01 s | details |
| #4 | WRONG ANSWER | 0.01 s | details |
| #5 | WRONG ANSWER | 0.01 s | details |
| #6 | WRONG ANSWER | 0.01 s | details |
| #7 | RUNTIME ERROR | 0.01 s | details |
| #8 | RUNTIME ERROR | 0.01 s | details |
| #9 | RUNTIME ERROR | 0.01 s | details |
| #10 | RUNTIME ERROR | 0.01 s | details |
| #11 | RUNTIME ERROR | 0.01 s | details |
| #12 | RUNTIME ERROR | 0.01 s | details |
| #13 | RUNTIME ERROR | 0.01 s | details |
| #14 | RUNTIME ERROR | 0.01 s | details |
| #15 | RUNTIME ERROR | 0.01 s | details |
| #16 | RUNTIME ERROR | 0.01 s | details |
Compiler report
input/code.cpp: In function 'std::__cxx11::string operate(std::__cxx11::string, int)':
input/code.cpp:10:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i = 0; i < in.length(); i++){
~~^~~~~~~~~~~~~Code
#include <iostream>
#include <string>
using namespace std;
string operate(string in, int rn){
//cout << "round number " << rn << "\n";
string ne (2*(rn+1)-1, 'a'+rn-1);
//cout << "base string: " << ne << "\n";
for(int i = 0; i < in.length(); i++){
//cout << "moving " << i << ": " << in[i] << " to " << 2*i+1 << "\n";
ne[2*i+1] = in[i];
}
return ne;
}
int main() {
int n;
cin >> n;
string str = "a";
for (int i = 0; i < n; i++) {
str = operate(str, i+1);
//cout << str << "\n";
}
cout << str;
return 0;
}Test details
Test 1
Verdict: WRONG ANSWER
| input |
|---|
| 1 |
| correct output |
|---|
| a |
| user output |
|---|
| aaa |
Test 2
Verdict: WRONG ANSWER
| input |
|---|
| 2 |
| correct output |
|---|
| bab |
| user output |
|---|
| babab |
Test 3
Verdict: ACCEPTED
| input |
|---|
| 3 |
| correct output |
|---|
| cbcacbc |
| user output |
|---|
| cbcacbc |
Test 4
Verdict: WRONG ANSWER
| input |
|---|
| 4 |
| correct output |
|---|
| dcdbdcdadcdbdcd |
| user output |
|---|
| dcdbdcdad |
Test 5
Verdict: WRONG ANSWER
| input |
|---|
| 5 |
| correct output |
|---|
| edecedebedecedeaedecedebedeced... |
| user output |
|---|
| edecedebede |
Test 6
Verdict: WRONG ANSWER
| input |
|---|
| 6 |
| correct output |
|---|
| fefdfefcfefdfefbfefdfefcfefdfe... |
| user output |
|---|
| fefdfefcfefdf |
Test 7
Verdict: RUNTIME ERROR
| input |
|---|
| 7 |
| correct output |
|---|
| gfgegfgdgfgegfgcgfgegfgdgfgegf... |
| user output |
|---|
| (empty) |
Error:
*** stack smashing detected ***: <unknown> terminated
Test 8
Verdict: RUNTIME ERROR
| input |
|---|
| 8 |
| correct output |
|---|
| hghfhghehghfhghdhghfhghehghfhg... |
| user output |
|---|
| (empty) |
Error:
*** stack smashing detected ***: <unknown> terminated
Test 9
Verdict: RUNTIME ERROR
| input |
|---|
| 9 |
| correct output |
|---|
| ihigihifihigihieihigihifihigih... |
| user output |
|---|
| (empty) |
Error:
*** stack smashing detected ***: <unknown> terminated
Test 10
Verdict: RUNTIME ERROR
| input |
|---|
| 10 |
| correct output |
|---|
| jijhjijgjijhjijfjijhjijgjijhji... |
| user output |
|---|
| (empty) |
Error:
double free or corruption (out)
Test 11
Verdict: RUNTIME ERROR
| input |
|---|
| 11 |
| correct output |
|---|
| kjkikjkhkjkikjkgkjkikjkhkjkikj... |
| user output |
|---|
| (empty) |
Error:
double free or corruption (out)
Test 12
Verdict: RUNTIME ERROR
| input |
|---|
| 12 |
| correct output |
|---|
| lkljlklilkljlklhlkljlklilkljlk... |
| user output |
|---|
| (empty) |
Error:
double free or corruption (out)
Test 13
Verdict: RUNTIME ERROR
| input |
|---|
| 13 |
| correct output |
|---|
| mlmkmlmjmlmkmlmimlmkmlmjmlmkml... |
| user output |
|---|
| (empty) |
Error:
double free or corruption (out)
Test 14
Verdict: RUNTIME ERROR
| input |
|---|
| 14 |
| correct output |
|---|
| nmnlnmnknmnlnmnjnmnlnmnknmnlnm... |
| user output |
|---|
| (empty) |
Error:
double free or corruption (out)
Test 15
Verdict: RUNTIME ERROR
| input |
|---|
| 15 |
| correct output |
|---|
| onomonolonomonokonomonolonomon... |
| user output |
|---|
| (empty) |
Error:
double free or corruption (out)
Test 16
Verdict: RUNTIME ERROR
| input |
|---|
| 16 |
| correct output |
|---|
| popnpopmpopnpoplpopnpopmpopnpo... |
| user output |
|---|
| (empty) |
Error:
double free or corruption (out)
