結果

問題 No.457 (^^*)
ユーザー butsurizukibutsurizuki
提出日時 2016-11-09 16:19:13
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 444 ms
コンパイル使用メモリ 21,504 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 02:05:37
合計ジャッジ時間 1,477 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 11 ms
5,376 KB
testcase_11 AC 41 ms
5,376 KB
testcase_12 AC 144 ms
5,376 KB
testcase_13 AC 185 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 143 ms
5,376 KB
testcase_16 AC 183 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:8:13: warning: implicit declaration of function ‘strlen’ [-Wimplicit-function-declaration]
    8 |         l = strlen(s);
      |             ^~~~~~
main.c:3:1: note: include ‘<string.h>’ or provide a declaration of ‘strlen’
    2 | #include <stdlib.h>
  +++ |+#include <string.h>
    3 | 
main.c:8:13: warning: incompatible implicit declaration of built-in function ‘strlen’ [-Wbuiltin-declaration-mismatch]
    8 |         l = strlen(s);
      |             ^~~~~~
main.c:8:13: note: include ‘<string.h>’ or provide a declaration of ‘strlen’
main.c:7:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |         scanf("%s",s);
      |         ^~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>

int main(void) {
	int i,j,l,ap,bp,ac=0,bc=0;
	char s[16384],a[8] = "^^*-",b[8] = "*^^-";
	scanf("%s",s);
	l = strlen(s);
	for(i = 0;i < l;i++){
		if(s[i] != '('){continue;}
		ap=0;bp=0;
		for(j = i+1;j < l;j++){
			if(s[j] == a[ap]){ap++;}
			if(s[j] == b[bp]){bp++;}
			if(s[j] == ')'){
				if(ap >= 3){ac++;}
				if(bp >= 3){bc++;}
			}
		}
	}
	printf("%d %d\n",ac,bc);
	return 0;
}
0