結果

問題 No.457 (^^*)
ユーザー YamyukiYamyuki
提出日時 2016-12-08 00:24:32
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 775 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 22,144 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-05-06 02:16:05
合計ジャッジ時間 5,087 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
6,656 KB
testcase_01 WA -
testcase_02 AC 0 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 1 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:18:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   18 |         scanf("%s",c);
      |         ^~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
#include<string.h>

long long sump(int a, int b){
	if(a==b) return b;
	return (long long)a*sump(a-1,b);
}

long long combi(int a, int b){
	if(a<b) return 0;
	return sump(a,a-b+1)/sump(b,1);
}

int main(){
	int i,l,a[9998][2],anum,nico,j,k;
	long long right,left;
	char c[10001];
	scanf("%s",c);
	l=strlen(c);
	right=0;
	left=0;
	for(i=0;i<l-1;i++){
		if(c[i]=='('){
			anum=0;
			nico=0;
			for(j=i+1;j<l;j++){
				if(c[j]=='*'){
					a[anum][0]=nico;
					a[anum][1]=0;
					anum++;
				}else if(c[j]=='^'){
					nico++;
					for(k=0;k<anum;k++){
						a[k][1]++;
					}
				}else if(c[j]==')'){
					for(k=0;k<anum;k++){
						left+=combi(a[k][0],2);
						right+=combi(a[k][1],2);
					}
				}
			}
		}
	}
	printf("%lld %lld\n",left,right);
	return 0;
}
0