結果

問題 No.2120 場合の数の下8桁
ユーザー 沙耶花沙耶花
提出日時 2022-11-04 21:43:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,384 ms / 2,000 ms
コード長 938 bytes
コンパイル時間 4,306 ms
コンパイル使用メモリ 261,128 KB
実行使用メモリ 81,664 KB
最終ジャッジ日時 2024-07-18 19:26:49
合計ジャッジ時間 15,348 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 334 ms
42,496 KB
testcase_01 AC 340 ms
42,496 KB
testcase_02 AC 325 ms
42,624 KB
testcase_03 AC 317 ms
42,496 KB
testcase_04 AC 327 ms
42,624 KB
testcase_05 AC 322 ms
42,624 KB
testcase_06 AC 1,136 ms
81,536 KB
testcase_07 AC 312 ms
42,496 KB
testcase_08 AC 324 ms
42,496 KB
testcase_09 AC 320 ms
42,624 KB
testcase_10 AC 320 ms
42,624 KB
testcase_11 AC 319 ms
42,624 KB
testcase_12 AC 312 ms
42,624 KB
testcase_13 AC 320 ms
42,880 KB
testcase_14 AC 322 ms
43,392 KB
testcase_15 AC 643 ms
61,568 KB
testcase_16 AC 1,384 ms
79,616 KB
testcase_17 AC 939 ms
80,896 KB
testcase_18 AC 316 ms
42,496 KB
testcase_19 AC 946 ms
81,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001

int dp[10000007];
int cnt[10000007];
int main(){
	
	for(int i=2;i<=10000003;i++){
		if(dp[i]!=0)continue;
		
		for(int j=i;j<=10000003;j+=i){
			dp[j] = i;
		}
		
	}
	
	int N,M;
	cin>>M>>N;
	
	long long ans = 0;
	if(M>=N){
		rep(i,N){
			{
				int cur = M-i;
				while(cur!=1){
					cnt[dp[cur]]++;
					cur /= dp[cur];
				}
			}
			{
				int cur = N-i;
				while(cur!=1){
					cnt[dp[cur]]--;
					cur /= dp[cur];
				}
			}
		}
		ans = 1;
		for(long long i=2;i<=10000000;i++){
			if(cnt[i]!=0){
				ans *= pow_mod(i,cnt[i],100000000);
				ans %= 100000000;
			}
		}
		
	}
	
	string Ans = to_string(ans);
	while(Ans.size()!=8)Ans.insert(Ans.begin(),'0');
	cout<<Ans<<endl;
	return 0;
}
0