| Task: | Ositus |
| Sender: | jusola |
| Submission time: | 2021-10-08 18:08:39 +0300 |
| Language: | C++ (C++11) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | WRONG ANSWER | 0 |
| #3 | WRONG ANSWER | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
| #2 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
| #3 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
| #4 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
| #5 | WRONG ANSWER | 0.01 s | 2, 3 | details |
| #6 | WRONG ANSWER | 0.01 s | 3 | details |
| #7 | WRONG ANSWER | 0.49 s | 3 | details |
Compiler report
input/code.cpp: In function 'int main()':
input/code.cpp:26:31: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int start = 0; start < in.length(); start++) {
~~~~~~^~~~~~~~~~~~~
input/code.cpp:28:35: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int end = start; end < in.length(); end++){
~~~~^~~~~~~~~~~~~Code
#include <iostream>
#include <string>
#include <map>
using namespace std;
int pow(int b, int e) {
int r = 1;
for (int i = 0; i < e; i++){
r = r * b;
}
return r;
}
void log(string txt) {
cout << txt << "\n";
}
int main() {
string in;
cin >> in;
unsigned int res = 0;
for (int start = 0; start < in.length(); start++) {
map<const char, unsigned int> charcount;
for (int end = start; end < in.length(); end++){
const char cur = in[end];
if(charcount[cur] == 1){
break;
}else{
charcount[cur]++;
res++;
}
}
}
cout << res;
return 0;
}Test details
Test 1
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| a |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1 |
Test 2
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| abcdefghij |
| correct output |
|---|
| 512 |
| user output |
|---|
| 55 |
Test 3
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| abcabaacbc |
| correct output |
|---|
| 120 |
| user output |
|---|
| 22 |
Test 4
Group: 1, 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| aaxxxxxxaa |
| correct output |
|---|
| 4 |
| user output |
|---|
| 12 |
Test 5
Group: 2, 3
Verdict: WRONG ANSWER
| input |
|---|
| mfyzvoxmppoxcvktmcjkryyocfweub... |
| correct output |
|---|
| 643221148 |
| user output |
|---|
| 619 |
Test 6
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| weinscqmmpgbrlboocvtbptgbahmwv... |
| correct output |
|---|
| 831644159 |
| user output |
|---|
| 30387 |
Test 7
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| sxaoxcyrjoeieyinaqxwukgzdnhhsw... |
| correct output |
|---|
| 816016015 |
| user output |
|---|
| 6086251 |
