CSES - Datatähti 2022 alku - Results
Submission details
Task:Ositus
Sender:jusola
Submission time:2021-10-08 18:08:39 +0300
Language:C++11
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.01 s1, 2, 3details
#20.01 s1, 2, 3details
#30.01 s1, 2, 3details
#40.01 s1, 2, 3details
#50.01 s2, 3details
#60.01 s3details
#70.49 s3details

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:

input
abcdefghij

correct output
512

user output
55

Test 3

Group: 1, 2, 3

Verdict:

input
abcabaacbc

correct output
120

user output
22

Test 4

Group: 1, 2, 3

Verdict:

input
aaxxxxxxaa

correct output
4

user output
12

Test 5

Group: 2, 3

Verdict:

input
mfyzvoxmppoxcvktmcjkryyocfweub...

correct output
643221148

user output
619

Test 6

Group: 3

Verdict:

input
weinscqmmpgbrlboocvtbptgbahmwv...

correct output
831644159

user output
30387

Test 7

Group: 3

Verdict:

input
sxaoxcyrjoeieyinaqxwukgzdnhhsw...

correct output
816016015

user output
6086251