| Task: | Karkit |
| Sender: | user2874 |
| Submission time: | 2021-10-12 10:18:47 +0300 |
| Language: | Java |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| test | verdict | time | |
|---|---|---|---|
| #1 | RUNTIME ERROR | 0.13 s | details |
| #2 | RUNTIME ERROR | 0.13 s | details |
| #3 | RUNTIME ERROR | 0.13 s | details |
| #4 | RUNTIME ERROR | 0.13 s | details |
| #5 | RUNTIME ERROR | 0.13 s | details |
Code
import java.util.Scanner;
import java.util.ArrayList;
public class vastaus {
public static void main (String [] args){
Scanner lukija = new Scanner(System.in);
int eka = Integer.valueOf(lukija.nextLine());
ArrayList<Integer> lista = new ArrayList<>();
lista.add(Integer.valueOf(lukija.nextLine()));
lista.add(Integer.valueOf(lukija.nextLine()));
lista.add(Integer.valueOf(lukija.nextLine()));
int apu = 2;
int apu2 = 100000;
while(0 <apu){
if(lista.get(apu)<apu2){
apu2 = lista.get(apu);
}
apu--;
}
System.out.println(eka/apu2);
}
}Test details
Test 1
Verdict: RUNTIME ERROR
| input |
|---|
| 100 1 1 |
| correct output |
|---|
| 100 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.util.NoSuchElementException: No line found at java.base/j...
Test 2
Verdict: RUNTIME ERROR
| input |
|---|
| 1 100 100 |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.util.NoSuchElementException: No line found at java.base/j...
Test 3
Verdict: RUNTIME ERROR
| input |
|---|
| 50 2 3 |
| correct output |
|---|
| 25 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.util.NoSuchElementException: No line found at java.base/j...
Test 4
Verdict: RUNTIME ERROR
| input |
|---|
| 100 17 3 |
| correct output |
|---|
| 33 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.util.NoSuchElementException: No line found at java.base/j...
Test 5
Verdict: RUNTIME ERROR
| input |
|---|
| 5 5 5 |
| correct output |
|---|
| 1 |
| user output |
|---|
| (empty) |
Error:
Exception in thread "main" java.util.NoSuchElementException: No line found at java.base/j...
