結果

問題 No.129 お年玉(2)
ユーザー TLwiegehttTLwiegehtt
提出日時 2015-07-14 22:32:57
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 291 ms / 5,000 ms
コード長 814 bytes
コンパイル時間 864 ms
コンパイル使用メモリ 21,504 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 22:46:21
合計ジャッジ時間 5,816 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 0 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 36 ms
5,376 KB
testcase_06 AC 186 ms
5,376 KB
testcase_07 AC 188 ms
5,376 KB
testcase_08 AC 24 ms
5,376 KB
testcase_09 AC 155 ms
5,376 KB
testcase_10 AC 153 ms
5,376 KB
testcase_11 AC 146 ms
5,376 KB
testcase_12 AC 15 ms
5,376 KB
testcase_13 AC 10 ms
5,376 KB
testcase_14 AC 182 ms
5,376 KB
testcase_15 AC 169 ms
5,376 KB
testcase_16 AC 206 ms
5,376 KB
testcase_17 AC 127 ms
5,376 KB
testcase_18 AC 147 ms
5,376 KB
testcase_19 AC 52 ms
5,376 KB
testcase_20 AC 237 ms
5,376 KB
testcase_21 AC 172 ms
5,376 KB
testcase_22 AC 133 ms
5,376 KB
testcase_23 AC 186 ms
5,376 KB
testcase_24 AC 21 ms
5,376 KB
testcase_25 AC 161 ms
5,376 KB
testcase_26 AC 77 ms
5,376 KB
testcase_27 AC 88 ms
5,376 KB
testcase_28 AC 291 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 0 ms
5,376 KB
testcase_31 AC 0 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 30 ms
5,376 KB
testcase_39 AC 29 ms
5,376 KB
testcase_40 AC 82 ms
5,376 KB
testcase_41 AC 74 ms
5,376 KB
testcase_42 AC 28 ms
5,376 KB
testcase_43 AC 9 ms
5,376 KB
testcase_44 AC 76 ms
5,376 KB
testcase_45 AC 16 ms
5,376 KB
testcase_46 AC 11 ms
5,376 KB
testcase_47 AC 140 ms
5,376 KB
testcase_48 AC 34 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:59:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   59 |         scanf("%lld", &n);
      |         ^~~~~~~~~~~~~~~~~
main.c:60:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   60 |         scanf("%lld", &m);
      |         ^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

long long int sum,n,m,r;

int gcd( int a, int b){
	if(b == 0){
		return a;
	}
	
	if(a > b){
		return gcd(b,a%b);
	}else{
		return gcd(a,b%a);
	}
}
int C(int n, int r){
	int i, j, tr;
	int tmp[10010]={0};
	sum = 1;
	
	if( n < r ){return 0;}
	
	for(i=0;i<10010;i++){
		tmp[i] = 1;
	}
	
	for(i=n;i>1;i--){
		if( r == i ){break;}
		if( (n-r) == i ){break;}
		tmp[i] = i;
	}
	tr = n-i;
	
	for(i=2;i<=tr;i++){
		int ti=i;
		for(j=2;j<=n;j++){
			int g = gcd(tmp[j], ti);
			if( g != 1){
				tmp[j] /= g;
				ti /= g;
			}
			if(ti == 1){
				break;
			}
		}
	}
	
	
	for(i=1;i<=n;i++){
		if(tmp[i] != 0){
			sum = (sum*tmp[i])% 1000000000;
		}
	}
	return (int)(sum);
}

int main(void){
	
	scanf("%lld", &n);
	scanf("%lld", &m);
	
	r = (n / 1000) % m;
	
	printf("%d\n", C((int)m,(int)r));

	return 0;
}
0