結果

問題 No.592 括弧の対応 (2)
ユーザー tailstails
提出日時 2017-02-13 00:10:56
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 22 ms / 5,000 ms
コード長 336 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 19,968 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-06-09 10:10:23
合計ジャッジ時間 1,232 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 22 ms
6,940 KB
testcase_02 AC 21 ms
6,940 KB
testcase_03 AC 20 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:9:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         scanf("%d ",&n);
      |         ^~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

char s[200010];
int stack[100010];
int c[200010];
int n,d,i,j;

int main(){
	scanf("%d ",&n);

	for(i=1;i<=n;++i){
		int k=getchar();
		if(k=='(') {
			stack[d++]=i;
		} else if(k==')') {
			j=stack[--d];
			c[i]=j;
			c[j]=i;
		} else {
			break;
		}
	}

	for(i=1;i<=n;++i){
		printf("%d\n",c[i]);
	}

	return 0;
}
0