CSES - Datatähti 2016 alku - Results
Submission details
Task:Osajono
Sender:KARHU
Submission time:2015-10-05 17:37:13 +0300
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.06 s1details
#20.05 s1details
#30.05 s1details
#40.05 s1details
#50.06 s1details
#60.05 s2details
#70.06 s2details
#80.05 s2details
#90.06 s2details
#100.05 s2details
#110.05 s3details
#120.06 s3details
#130.05 s3details
#140.05 s3details
#150.05 s3details

Compiler report

input/code.cpp: In function 'int summa(int)':
input/code.cpp:8:10: warning: statement has no effect [-Wunused-value]
     for(i; i > 0; --i)
          ^
input/code.cpp: In function 'int main()':
input/code.cpp:19:39: warning: ignoring return value of 'char* fgets(char*, int, FILE*)', declared with attribute warn_unused_result [-Wunused-result]
     fgets(syote, sizeof(syote), stdin);
                                       ^
input/code.cpp:31:20: warning: ignoring return value of 'int system(const char*)', declared with attribute warn_unused_result [-Wunused-result]
     system("pause");
                    ^

Code

#include <stdio.h>
#include <stdlib.h>

int summa(int i)
{
    int summa = 0;

    for(i; i > 0; --i)
        summa += i;

    return summa;
}

int main()
{
    int i, j, k, tuloste = 0;
    char syote[12] = {0};

    fgets(syote, sizeof(syote), stdin);
    for(i = 'A'; i < 'Z' + 1; ++i)
    {
        k = 0;
        for(j = 0; syote[j] != 0; ++j)
            if(syote[j] == i || syote[j] == i + 32)
                ++k;

        tuloste += summa(k);
    }

    printf("%u\n", tuloste);
    system("pause");
    return 0;
}

Test details

Test 1

Group: 1

Verdict:

input
BBBAABBBAAAABBAAAABAABAABBBBBB...

correct output
2554

user output
36

Error:
sh: 1: pause: not found

Test 2

Group: 1

Verdict:

input
GDFVYWQCZAFGICSXOSWBZMGPDBSSVL...

correct output
299

user output
12

Error:
sh: 1: pause: not found

Test 3

Group: 1

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAZAAAA...

correct output
4314

user output
66

Error:
sh: 1: pause: not found

Test 4

Group: 1

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4231

user output
66

Error:
sh: 1: pause: not found

Test 5

Group: 1

Verdict:

input
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
5050

user output
66

Error:
sh: 1: pause: not found

Test 6

Group: 2

Verdict:

input
BBABABBBABBAABBABBABAABAAABABA...

correct output
6253029

user output
42

Error:
sh: 1: pause: not found

Test 7

Group: 2

Verdict:

input
RBKJMLDVQMKHYKCNDIVVKOMFUXTFMG...

correct output
485173

user output
13

Error:
sh: 1: pause: not found

Test 8

Group: 2

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
12427725

user output
66

Error:
sh: 1: pause: not found

Test 9

Group: 2

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
12467549

user output
66

Error:
sh: 1: pause: not found

Test 10

Group: 2

Verdict:

input
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
12502500

user output
66

Error:
sh: 1: pause: not found

Test 11

Group: 3

Verdict:

input
BAAAAABABBABAABAABABABBBABBAAB...

correct output
2500051369

user output
38

Error:
sh: 1: pause: not found

Test 12

Group: 3

Verdict:

input
ABBURXDRVXAYBPXXOQZNYHLWGUEEWR...

correct output
192407124

user output
15

Error:
sh: 1: pause: not found

Test 13

Group: 3

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4998050400

user output
66

Error:
sh: 1: pause: not found

Test 14

Group: 3

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4998850144

user output
66

Error:
sh: 1: pause: not found

Test 15

Group: 3

Verdict:

input
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
5000050000

user output
66

Error:
sh: 1: pause: not found