Submission #1345715


Source Code Expand

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<math.h>
int main()
{
    int N;
    char zm[500]={0};
    int symbol[500]={0};
    scanf("%d",&N);
    char spa;
    scanf("%c",&spa);
    int needz,needy;
	needz=needy=0;
    for(int i=150;i<150+N;i++)
    	scanf("%c",&zm[i]);
    for(int i=150;i<150+N;i++)
    {
    	if(zm[i]=='(')
    	{
    		int k;
    		for(k=i+1;k<150+N;k++)
    		{
    			if(symbol[k]==0 && zm[k]==')')
    			{
					symbol[k]=1;
					break; 
				}
			}
			if(k>=150+N)
			{
				zm[150+N++]=')';
				symbol[150+N-1]=1;
			}
		}
	}
	for(int i=150;i<150+N;i++)
	{
		if(zm[i]==')' && symbol[i]==0)
			printf("(");
	}
	for(int i=150;i<150+N;i++)
	{
		printf("%c",zm[i]);
	}
    return 0;
 }

Submission Info

Submission Time
Task D - Insertion
User zjwulbx
Language C++14 (GCC 5.4.1)
Score 400
Code Size 774 Byte
Status AC
Exec Time 0 ms
Memory 128 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:10:19: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d",&N);
                   ^
./Main.cpp:12:21: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%c",&spa);
                     ^
./Main.cpp:16:24: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
      scanf("%c",&zm[i]);
                        ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 400 / 400
Status
AC × 3
AC × 12
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt
All in1.txt, in2.txt, in3.txt, in4.txt, in5.txt, in6.txt, in7.txt, in8.txt, in9.txt, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
in1.txt AC 0 ms 128 KB
in2.txt AC 0 ms 128 KB
in3.txt AC 0 ms 128 KB
in4.txt AC 0 ms 128 KB
in5.txt AC 0 ms 128 KB
in6.txt AC 0 ms 128 KB
in7.txt AC 0 ms 128 KB
in8.txt AC 0 ms 128 KB
in9.txt AC 0 ms 128 KB
s1.txt AC 0 ms 128 KB
s2.txt AC 0 ms 128 KB
s3.txt AC 0 ms 128 KB