結果
問題 | No.22 括弧の対応 |
ユーザー | hayakawa4739 |
提出日時 | 2016-07-04 18:53:42 |
言語 | C90 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 409 bytes |
コンパイル時間 | 251 ms |
コンパイル使用メモリ | 20,352 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-12 20:09:41 |
合計ジャッジ時間 | 2,941 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 0 ms
5,248 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 0 ms
6,820 KB |
testcase_18 | AC | 1 ms
6,820 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:8:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | scanf("%d %d\n", &count, &number); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.c:11:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | scanf("%c", &kakko[i]); | ^~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(void) { int count, number, kazu = 0; char kakko[256]; int i; scanf("%d %d\n", &count, &number); for (i = 0; i < count; i++) { scanf("%c", &kakko[i]); } for (i = number-1; i < 10000; i++) { if(i == count){ i = -1; }else { if(kakko[i] == '('){ kazu++; }else{ kazu--; } if(kazu == 0){ printf("%d",i+1); break; } } } return 0; }