Submission #1590670


Source Code Expand

n = int(input())
N = input()
num = 0
while N[num] == ')':
    N = '(' + N
    num += 2
    if num >= n*2:
        break
a = N.count('(')
b = len(N) - a
if (a - b) < 0:
    for i in range(b-a):
        N = '(' + N
elif (a -b) > 0:
    for i in range(a-b):
        N = N + ')'

print(N)

Submission Info

Submission Time
Task C - Colorful Leaderboard
User satori2573
Language Python (3.4.3)
Score 0
Code Size 301 Byte
Status WA
Exec Time 17 ms
Memory 3060 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
WA × 3
WA × 8
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt
All in1.txt, in2.txt, in3.txt, in4.txt, in5.txt, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
in1.txt WA 17 ms 3060 KB
in2.txt WA 17 ms 3060 KB
in3.txt WA 17 ms 3060 KB
in4.txt WA 17 ms 3060 KB
in5.txt WA 17 ms 3060 KB
s1.txt WA 17 ms 3060 KB
s2.txt WA 17 ms 3060 KB
s3.txt WA 17 ms 3060 KB