CSES - Datatähti 2023 alku - Results
Submission details
Task:Lehmät
Sender:Zexee
Submission time:2022-11-01 14:10:22 +0200
Language:C++17
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
Test results
testverdicttimegroup
#10.00 s1, 2details
#20.00 s1, 2details
#30.00 s1, 2details
#40.00 s1, 2details
#50.00 s1, 2details
#60.00 s2details
#70.00 s2details
#80.00 s2details
#90.00 s2details

Code

#include <bits/stdc++.h>
using namespace std;
int main() {
	int h, d, cows=0;
	cin>>h>>d;
	string line;
	for (int y=0;y<h;y++){
		cin>>line;
		bool count = false;
		for (int x=0;x<d;x++){
			char c = line[x];
			if (count && line[x]=='@'){
				cows++;
			}
			count = (c=='*')? !count:count;
		}

			cout<<line<<"\n";
	}
	cout<<cows;
	return 0;
}

Test details

Test 1

Group: 1, 2

Verdict:

input
3 3
***
*.*
***

correct output
0

user output
***
*.*
***
0

Test 2

Group: 1, 2

Verdict:

input
3 3
***
*@*
***

correct output
1

user output
***
*@*
***
1

Test 3

Group: 1, 2

Verdict:

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

correct output
4

user output
...@......
..******..
@.*@@@@*.@
..******..
...@......
...

Test 4

Group: 1, 2

Verdict:

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

correct output
11

user output
@@...@.@@@
..@@.@@..@
@.*******@
..*@....*.
..*.@@.@*@
...
Truncated

Test 5

Group: 1, 2

Verdict:

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

correct output
64

user output
**********
*@@@@@@@@*
*@@@@@@@@*
*@@@@@@@@*
*@@@@@@@@*
...
Truncated

Test 6

Group: 2

Verdict:

input
100 100
.........................@.......

correct output
60

user output
.........................@.......
Truncated

Test 7

Group: 2

Verdict:

input
100 100
..@@..........@......@....@@.....

correct output
1507

user output
..@@..........@......@....@@.....
Truncated

Test 8

Group: 2

Verdict:

input
100 100
.@..@@..@@.@..@..@..@@..@..@.....

correct output
3348

user output
.@..@@..@@.@..@..@..@@..@..@.....
Truncated

Test 9

Group: 2

Verdict:

input
100 100
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...

correct output
7225

user output
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@...
Truncated