QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#357648 | #8132. Freshman's Dream | squishybanana# | WA | 9ms | 9436kb | Python3 | 130b | 2024-03-19 06:39:37 | 2024-03-19 06:39:37 |
Judging History
answer
t = int(input())
for _ in range(t):
n = int(input())
if n%2 == 0:
print(n//2, n//2)
else: print(-1)
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 9ms
memory: 9436kb
input:
5 2 3 6 10 18
output:
1 1 -1 3 3 5 5 9 9
result:
wrong answer sides not equal