| Task: | Karkit |
| Sender: | OivaPeltola |
| Submission time: | 2021-10-12 23:20:05 +0300 |
| Language: | Node.js |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| test | verdict | time | |
|---|---|---|---|
| #1 | RUNTIME ERROR | 0.43 s | details |
| #2 | RUNTIME ERROR | 0.43 s | details |
| #3 | RUNTIME ERROR | 0.43 s | details |
| #4 | RUNTIME ERROR | 0.43 s | details |
| #5 | RUNTIME ERROR | 0.43 s | details |
Code
var n = parseInt(prompt());
var a = parseInt(prompt());
var b = parseInt(prompt());
var sum = 0
if(a > b){
sum = Math.floor(n/b);
}
else{
sum = Math.floor(n/a);
}
console.log(sum);Test details
Test 1
Verdict: RUNTIME ERROR
| input |
|---|
| 100 1 1 |
| correct output |
|---|
| 100 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:1
(function (exports, require, module, __filename, __dirname) { var n =...Test 2
Verdict: RUNTIME ERROR
| input |
|---|
| 1 100 100 |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:1
(function (exports, require, module, __filename, __dirname) { var n =...Test 3
Verdict: RUNTIME ERROR
| input |
|---|
| 50 2 3 |
| correct output |
|---|
| 25 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:1
(function (exports, require, module, __filename, __dirname) { var n =...Test 4
Verdict: RUNTIME ERROR
| input |
|---|
| 100 17 3 |
| correct output |
|---|
| 33 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:1
(function (exports, require, module, __filename, __dirname) { var n =...Test 5
Verdict: RUNTIME ERROR
| input |
|---|
| 5 5 5 |
| correct output |
|---|
| 1 |
| user output |
|---|
| (empty) |
Error:
/box/input/code.js:1
(function (exports, require, module, __filename, __dirname) { var n =...