| Task: | Pinta-ala |
| Sender: | Turtleb01 |
| Submission time: | 2023-01-21 13:50:27 +0200 |
| Language: | Node.js |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| test | verdict | time | |
|---|---|---|---|
| #1 | ACCEPTED | 0.13 s | details |
| #2 | WRONG ANSWER | 0.13 s | details |
| #3 | WRONG ANSWER | 0.13 s | details |
Code
const fs = require("fs");
const input = fs.readFileSync(0, {encoding:"utf-8"}).split("\n");
const lines = parseInt(input[0]);
for(i=1;i<=lines;i++) {
[a,b] = input[i].split(" ").map(e=>parseInt(e));
possible = b>(Math.sqrt(a)+1)**2;
console.log(possible?"YES":"NO");
}
Test details
Test 1
Verdict: ACCEPTED
| input |
|---|
| 1000 578049 731905 262997 434601 559974 650052 458543 101143 ... |
| correct output |
|---|
| YES YES YES NO NO ... |
| user output |
|---|
| YES YES YES NO NO ... Truncated |
Test 2
Verdict: WRONG ANSWER
| input |
|---|
| 1000 10000 9500 10000 9501 10000 9502 10000 9503 ... |
| correct output |
|---|
| NO NO NO NO NO ... |
| user output |
|---|
| NO NO NO NO NO ... Truncated |
Test 3
Verdict: WRONG ANSWER
| input |
|---|
| 961 1 1 1 2 1 3 1 4 ... |
| correct output |
|---|
| NO NO NO YES YES ... |
| user output |
|---|
| NO NO NO NO YES ... Truncated |
