Task: | Pussit |
Sender: | |
Submission time: | 2015-08-16 21:30:12 +0300 |
Language: | Java |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
#2 | WRONG ANSWER | 0 |
#3 | WRONG ANSWER | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | WRONG ANSWER | 0.30 s | 1 | details |
#2 | WRONG ANSWER | 0.31 s | 2 | details |
#3 | WRONG ANSWER | 0.32 s | 3 | details |
Code
import java.util.Scanner; public class Main { public static int testaa(int n, int m, int k) { int taysia = m/k; int jaa = m % k; int tyhjia = n - taysia - (jaa == 0 ? 0 : 1); int huonoin = tyhjia + k; if(jaa != 0) { huonoin++; } return huonoin; } public static void main(String[] args) { Scanner lukija = new Scanner(System.in); int l = lukija.nextInt(); int[] lista = new int[l]; for (int i = 0; i < l; i++) { int n = lukija.nextInt(); int m = lukija.nextInt(); int k = lukija.nextInt(); lista[i] = testaa(n, m, k); } for (int i : lista) { System.out.println(i); } lukija.close(); } }
Test details
Test 1
Group: 1
Verdict: WRONG ANSWER
input |
---|
1000 11 16 2 5 16 15 2 14 14 9 11 1 ... |
correct output |
---|
2 15 14 1 1 ... |
user output |
---|
5 19 15 -1 -10 ... |
Test 2
Group: 2
Verdict: WRONG ANSWER
input |
---|
1000 1436 3023 1378 4419 4559 3881 115 4220 1440 3556 3152 1653 ... |
correct output |
---|
1378 3881 1440 2057 5312 ... |
user output |
---|
2812 8299 1553 5208 7201 ... |
Test 3
Group: 3
Verdict: WRONG ANSWER
input |
---|
1000 337723917 939459738 544279388 233319567 486500388 164139442 722536320 995223331 969580610 274242146 994174001 844564432 ... |
correct output |
---|
544279388 164139442 1194505265 870263078 547470112 ... |
user output |
---|
882003304 397459007 1692116929 1118806577 1313198414 ... |