QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#225942 | #7525. Brackets | ucup-team1881# | WA | 1ms | 5660kb | C++20 | 1.1kb | 2023-10-25 12:54:31 | 2023-10-25 12:54:31 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 5660kb
input:
x+++y
output:
(x++)+(y)
result:
ok Participant's answer is correct
Test #2:
score: 0
Accepted
time: 0ms
memory: 3704kb
input:
q+u+++h+++++o+q++
output:
(q)+(u++)+(h++)+(++o)+(q++)
result:
ok Participant's answer is correct
Test #3:
score: -100
Wrong Answer
time: 0ms
memory: 3700kb
input:
++a+++b+++c+++d+e+++f+++g+h+j+k+++++i
output:
(a++)+(b++)+(c++)+(d)+(e++)+(f++)+(g)+(h)+(j)+(k++)+(++i)
result:
wrong answer Answer expression is different from the input one