| Task: | Karkit |
| Sender: | AnttiE |
| Submission time: | 2021-10-05 17:02:35 +0300 |
| Language: | Node.js |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| test | verdict | time | |
|---|---|---|---|
| #1 | WRONG ANSWER | 0.43 s | details |
| #2 | WRONG ANSWER | 0.43 s | details |
| #3 | WRONG ANSWER | 0.43 s | details |
| #4 | WRONG ANSWER | 0.43 s | details |
| #5 | WRONG ANSWER | 0.43 s | details |
Code
const input = () => new Promise(r => process.stdin.once("data", d => r(d.toString().trim())));
(async () => {
// -- START --
// jos joku näitä mun submissioneja tuijottaa niin...
// joo o, testailen toimiiko / miksei mun inputit toimi
// sillä readline on niin ärsyttävä käyttää
const n = parseInt(await input());
const a = parseInt(await input());
const b = parseInt(await input());
if(a < b) {
console.log(Math.floor(n / a).toString());
} else {
console.log(Math.floor(n / b).toString());
}
// -- END --
process.exit(0);
})();
Test details
Test 1
Verdict: WRONG ANSWER
| input |
|---|
| 100 1 1 |
| correct output |
|---|
| 100 |
| user output |
|---|
| (empty) |
Test 2
Verdict: WRONG ANSWER
| input |
|---|
| 1 100 100 |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Test 3
Verdict: WRONG ANSWER
| input |
|---|
| 50 2 3 |
| correct output |
|---|
| 25 |
| user output |
|---|
| (empty) |
Test 4
Verdict: WRONG ANSWER
| input |
|---|
| 100 17 3 |
| correct output |
|---|
| 33 |
| user output |
|---|
| (empty) |
Test 5
Verdict: WRONG ANSWER
| input |
|---|
| 5 5 5 |
| correct output |
|---|
| 1 |
| user output |
|---|
| (empty) |
