CSES - Datatähti 2016 alku - Results
Submission details
Task:Osajono
Sender:Maunuliini
Submission time:2015-09-28 16:45:13 +0300
Language:Java
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.19 s1details
#20.19 s1details
#30.18 s1details
#40.18 s1details
#50.18 s1details
#60.18 s2details
#70.18 s2details
#80.17 s2details
#90.19 s2details
#100.17 s2details
#110.18 s3details
#120.17 s3details
#130.18 s3details
#140.17 s3details
#150.17 s3details

Code

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package datatahti2016.pkg1;
import java.util.*; 
import java.io.*;
/**
 *
 * @author alexey
 */
public class Datatahti20161 {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        Scanner scan=new Scanner(System.in);
        
        
   
        String input=scan.nextLine();
        int answer=0;
        
        answer+=input.length();
        
        int[] letters=new int[26];
        
        
        for (int i = 0; i < input.length(); i++) {
            int c =input.charAt(i)-65;
            
            letters[c]++;
            
        }
        for (int i = 0; i < 26; i++) {
            if(letters[i]==0){
                
            }else{
             answer+=letters[i]-1;
            }
            
        }
       
      
        System.out.println(answer);
       
    }
    
}

Test details

Test 1

Group: 1

Verdict:

input
BBBAABBBAAAABBAAAABAABAABBBBBB...

correct output
2554

user output
(empty)

Error:
Error: Could not find or load main class Datatahti20161

Test 2

Group: 1

Verdict:

input
GDFVYWQCZAFGICSXOSWBZMGPDBSSVL...

correct output
299

user output
(empty)

Error:
Error: Could not find or load main class Datatahti20161

Test 3

Group: 1

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAZAAAA...

correct output
4314

user output
(empty)

Error:
Error: Could not find or load main class Datatahti20161

Test 4

Group: 1

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4231

user output
(empty)

Error:
Error: Could not find or load main class Datatahti20161

Test 5

Group: 1

Verdict:

input
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
5050

user output
(empty)

Error:
Error: Could not find or load main class Datatahti20161

Test 6

Group: 2

Verdict:

input
BBABABBBABBAABBABBABAABAAABABA...

correct output
6253029

user output
(empty)

Error:
Error: Could not find or load main class Datatahti20161

Test 7

Group: 2

Verdict:

input
RBKJMLDVQMKHYKCNDIVVKOMFUXTFMG...

correct output
485173

user output
(empty)

Error:
Error: Could not find or load main class Datatahti20161

Test 8

Group: 2

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
12427725

user output
(empty)

Error:
Error: Could not find or load main class Datatahti20161

Test 9

Group: 2

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
12467549

user output
(empty)

Error:
Error: Could not find or load main class Datatahti20161

Test 10

Group: 2

Verdict:

input
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
12502500

user output
(empty)

Error:
Error: Could not find or load main class Datatahti20161

Test 11

Group: 3

Verdict:

input
BAAAAABABBABAABAABABABBBABBAAB...

correct output
2500051369

user output
(empty)

Error:
Error: Could not find or load main class Datatahti20161

Test 12

Group: 3

Verdict:

input
ABBURXDRVXAYBPXXOQZNYHLWGUEEWR...

correct output
192407124

user output
(empty)

Error:
Error: Could not find or load main class Datatahti20161

Test 13

Group: 3

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4998050400

user output
(empty)

Error:
Error: Could not find or load main class Datatahti20161

Test 14

Group: 3

Verdict:

input
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...

correct output
4998850144

user output
(empty)

Error:
Error: Could not find or load main class Datatahti20161

Test 15

Group: 3

Verdict:

input
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...

correct output
5000050000

user output
(empty)

Error:
Error: Could not find or load main class Datatahti20161