| Task: | Pinta-ala |
| Sender: | Laserr |
| Submission time: | 2023-06-24 18:21:14 +0300 |
| Language: | Python3 (CPython3) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| test | verdict | time | |
|---|---|---|---|
| #1 | RUNTIME ERROR | 0.02 s | details |
| #2 | RUNTIME ERROR | 0.02 s | details |
| #3 | RUNTIME ERROR | 0.02 s | details |
Code
t = int(input())
while t > 0:
t -= 1
a = int(input())
b = int(input())
if a**2 - 2*a - 2*b - 2*a*b + 1 + b**2 >= 0:
print("YES")
else:
print("NO")Test details
Test 1
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 578049 731905 262997 434601 559974 650052 458543 101143 ... |
| correct output |
|---|
| YES YES YES NO NO ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 4, in <module>
a...Test 2
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 10000 9500 10000 9501 10000 9502 10000 9503 ... |
| correct output |
|---|
| NO NO NO NO NO ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 4, in <module>
a...Test 3
Verdict: RUNTIME ERROR
| input |
|---|
| 961 1 1 1 2 1 3 1 4 ... |
| correct output |
|---|
| NO NO NO YES YES ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 4, in <module>
a...