CSES - Putka Open 2015 – 2/6 - Results
Submission details
Task:Pussit
Sender:
Submission time:2015-08-15 19:54:03 +0300
Language:Java
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.21 s1details
#20.20 s2details
#30.21 s3details

Code

import java.util.Scanner;


public class Pussit {
	public static void main(String[] args) {

		Scanner input = new Scanner(System.in);

		final int testejä = input.nextInt();
		
		final int pusseja = input.nextInt();
		final int palloja = input.nextInt();
		final int tarvitaan = input.nextInt();
		
		int vastaus = 0;
		
		
		for (int testi = 0 ; testi<testejä ; testi++){ 

			
			if (palloja/pusseja>=tarvitaan){
				vastaus = tarvitaan;
			}
		
		
			
			System.out.println(vastaus);
		}

	}
}

Test details

Test 1

Group: 1

Verdict:

input
1000
11 16 2
5 16 15
2 14 14
9 11 1
...

correct output
2
15
14
1
1
...

user output
0
0
0
0
0
...

Test 2

Group: 2

Verdict:

input
1000
1436 3023 1378
4419 4559 3881
115 4220 1440
3556 3152 1653
...

correct output
1378
3881
1440
2057
5312
...

user output
0
0
0
0
0
...

Test 3

Group: 3

Verdict:

input
1000
337723917 939459738 544279388
233319567 486500388 164139442
722536320 995223331 969580610
274242146 994174001 844564432
...

correct output
544279388
164139442
1194505265
870263078
547470112
...

user output
0
0
0
0
0
...