CSES - Datatähti 2016 alku - Results
Submission details
Task:Tontti
Sender:Maunuliini
Submission time:2015-09-29 18:37:37 +0300
Language:Java
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.21 s1details
#20.19 s1details
#30.20 s1details
#40.19 s1details
#50.19 s1details
#60.20 s2details
#70.20 s2details
#80.18 s2details
#90.20 s2details
#100.20 s2details
#110.20 s3details
#120.18 s3details
#130.19 s3details
#140.19 s3details
#150.20 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.
 */
/**
 *
 * @author alexey
 */
import java.util.*;

public class Datatahti20163 {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here
        Scanner scan = new Scanner(System.in);
        ArrayList<int[]> line = new ArrayList<>();

        int h = scan.nextInt();
        int w = scan.nextInt();
        int t = scan.nextInt();
        int min = Math.min(h, w);
        int answer=0;

        boolean stop = false;

        
       
        
        int iq=0;
        
        while(iq<h) {
            String newline = scan.nextLine();
            for (int j = 0; j < h; j++) {
                if (newline.charAt(j) == '*') {
                    line.get(iq)[j] = 1;
                } else {
                    line.get(iq)[j] = 0;
                }
            }
            iq++;
        }
int s=0;
boolean overload;
        
        for (int l = 0; l < h; l++) {

            for (int k = 0; k < w; k++) {
                
                for (int i = 2; i < Math.min(w-k, h-l); i++) {
                    s=0;
                    for (int j = i; j < Math.min(w-k, h-l); j++) {
                        s += line.get(i)[j];
                        if(s>3){
                            break;
                        }
                    }
                    if(s==3){
                        answer++;
                    }
                }
                
                
            }
        }
        System.out.println(answer);
    }

}

Test details

Test 1

Group: 1

Verdict:

input
10 10 1
......*...
.......*..
*..*....*.
*....*....
...

correct output
94

user output
(empty)

Error:
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 0
	at java.lang.String.charAt(String.java:646)
	at Datatahti20163.main(Datatahti20163.java:40)

Test 2

Group: 1

Verdict:

input
10 10 5
**********
**********
**********
**********
...

correct output
0

user output
(empty)

Error:
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 0
	at java.lang.String.charAt(String.java:646)
	at Datatahti20163.main(Datatahti20163.java:40)

Test 3

Group: 1

Verdict:

input
10 10 10
**...*...*
*..*.**.*.
...**.*..*
*...**.*..
...

correct output
4

user output
(empty)

Error:
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 0
	at java.lang.String.charAt(String.java:646)
	at Datatahti20163.main(Datatahti20163.java:40)

Test 4

Group: 1

Verdict:

input
10 10 5
****......
*.*.**..**
....*.*..*
...*.***..
...

correct output
16

user output
(empty)

Error:
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 0
	at java.lang.String.charAt(String.java:646)
	at Datatahti20163.main(Datatahti20163.java:40)

Test 5

Group: 1

Verdict:

input
10 10 2
**.***..*.
...*.*....
.***.*...*
***.***..*
...

correct output
30

user output
(empty)

Error:
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 0
	at java.lang.String.charAt(String.java:646)
	at Datatahti20163.main(Datatahti20163.java:40)

Test 6

Group: 2

Verdict:

input
500 500 1
.................................

correct output
9552040

user output
(empty)

Error:
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 0
	at java.lang.String.charAt(String.java:646)
	at Datatahti20163.main(Datatahti20163.java:40)

Test 7

Group: 2

Verdict:

input
500 500 5
.................................

correct output
1536063

user output
(empty)

Error:
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 0
	at java.lang.String.charAt(String.java:646)
	at Datatahti20163.main(Datatahti20163.java:40)

Test 8

Group: 2

Verdict:

input
500 500 25000
**...*...**..*.*..*.**.*..*.*....

correct output
288

user output
(empty)

Error:
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 0
	at java.lang.String.charAt(String.java:646)
	at Datatahti20163.main(Datatahti20163.java:40)

Test 9

Group: 2

Verdict:

input
500 500 12500
**.**.*..*...*.**...*.***........

correct output
786

user output
(empty)

Error:
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 0
	at java.lang.String.charAt(String.java:646)
	at Datatahti20163.main(Datatahti20163.java:40)

Test 10

Group: 2

Verdict:

input
500 500 5000
.*.*.**..*.*.**.**..*..**...*....

correct output
1763

user output
(empty)

Error:
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 0
	at java.lang.String.charAt(String.java:646)
	at Datatahti20163.main(Datatahti20163.java:40)

Test 11

Group: 3

Verdict:

input
2000 2000 1
.................................

correct output
489611392

user output
(empty)

Error:
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 0
	at java.lang.String.charAt(String.java:646)
	at Datatahti20163.main(Datatahti20163.java:40)

Test 12

Group: 3

Verdict:

input
2000 2000 5
.................................

correct output
120725884

user output
(empty)

Error:
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 0
	at java.lang.String.charAt(String.java:646)
	at Datatahti20163.main(Datatahti20163.java:40)

Test 13

Group: 3

Verdict:

input
2000 2000 400000
..*..**.**.**.*.***...**.*..**...

correct output
1849

user output
(empty)

Error:
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 0
	at java.lang.String.charAt(String.java:646)
	at Datatahti20163.main(Datatahti20163.java:40)

Test 14

Group: 3

Verdict:

input
2000 2000 200000
***.*....*.*..*....**..*..*.*....

correct output
2665

user output
(empty)

Error:
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 0
	at java.lang.String.charAt(String.java:646)
	at Datatahti20163.main(Datatahti20163.java:40)

Test 15

Group: 3

Verdict:

input
2000 2000 80000
**.**...*.***.**....**.*....*....

correct output
5587

user output
(empty)

Error:
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 0
	at java.lang.String.charAt(String.java:646)
	at Datatahti20163.main(Datatahti20163.java:40)