結果

問題 No.1321 塗るめた
ユーザー 👑tozangezan👑tozangezan
提出日時 2020-12-18 01:07:05
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 3,061 bytes
コンパイル時間 734 ms
コンパイル使用メモリ 88,232 KB
実行使用メモリ 12,520 KB
最終ジャッジ日時 2023-10-21 07:43:31
合計ジャッジ時間 2,910 ms
ジャッジサーバーID
(参考情報)
judge15 / judge9
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
12,520 KB
testcase_01 AC 13 ms
12,520 KB
testcase_02 AC 14 ms
12,520 KB
testcase_03 AC 13 ms
12,520 KB
testcase_04 AC 13 ms
12,520 KB
testcase_05 AC 13 ms
12,520 KB
testcase_06 AC 14 ms
12,520 KB
testcase_07 AC 13 ms
12,520 KB
testcase_08 AC 14 ms
12,520 KB
testcase_09 AC 13 ms
12,520 KB
testcase_10 AC 13 ms
12,520 KB
testcase_11 AC 13 ms
12,520 KB
testcase_12 AC 15 ms
12,520 KB
testcase_13 AC 19 ms
12,520 KB
testcase_14 AC 14 ms
12,520 KB
testcase_15 AC 13 ms
12,520 KB
testcase_16 AC 14 ms
12,520 KB
testcase_17 AC 13 ms
12,520 KB
testcase_18 AC 13 ms
12,520 KB
testcase_19 AC 13 ms
12,520 KB
testcase_20 AC 13 ms
12,520 KB
testcase_21 AC 15 ms
12,520 KB
testcase_22 AC 13 ms
12,520 KB
testcase_23 AC 13 ms
12,520 KB
testcase_24 AC 15 ms
12,520 KB
testcase_25 AC 13 ms
12,520 KB
testcase_26 AC 13 ms
12,520 KB
testcase_27 AC 16 ms
12,520 KB
testcase_28 AC 16 ms
12,520 KB
testcase_29 AC 15 ms
12,520 KB
testcase_30 AC 13 ms
12,520 KB
testcase_31 AC 18 ms
12,520 KB
testcase_32 AC 15 ms
12,520 KB
testcase_33 AC 13 ms
12,520 KB
testcase_34 AC 13 ms
12,520 KB
testcase_35 AC 13 ms
12,520 KB
testcase_36 AC 20 ms
12,520 KB
testcase_37 AC 17 ms
12,520 KB
testcase_38 AC 16 ms
12,520 KB
testcase_39 AC 17 ms
12,520 KB
testcase_40 AC 16 ms
12,520 KB
testcase_41 AC 16 ms
12,520 KB
testcase_42 AC 14 ms
12,520 KB
testcase_43 AC 15 ms
12,520 KB
testcase_44 AC 13 ms
12,520 KB
testcase_45 AC 13 ms
12,520 KB
testcase_46 AC 13 ms
12,520 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:108:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  108 |         scanf("%d%d%d",&a,&b,&c);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~

ソースコード

diff #

// #pragma GCC target("avx")  // CPU 処理並列化
// #pragma GCC optimize("O3")  // CPU 処理並列化
// #pragma GCC optimize("unroll-loops")  // 条件処理の呼び出しを減らす
// #define BEGIN_STACK_EXTEND(size) void * stack_extend_memory_ = malloc(size);void * stack_extend_origin_memory_;char * stack_extend_dummy_memory_ = (char*)alloca((1+(int)(((long long)stack_extend_memory_)&127))*16);*stack_extend_dummy_memory_ = 0;asm volatile("mov %%rsp, %%rbx\nmov %%rax, %%rsp":"=b"(stack_extend_origin_memory_):"a"((char*)stack_extend_memory_+(size)-1024));
// #define END_STACK_EXTEND asm volatile("mov %%rax, %%rsp"::"a"(stack_extend_origin_memory_));free(stack_extend_memory_);

#include<stdio.h>
#include<math.h>
#include<algorithm>
#include<queue>
#include<deque>
#include<stack>
#include<string>
#include<string.h>
#include<vector>
#include<set>
#include<map>
#include<bitset>
#include<stdlib.h>
#include<cassert>
#include<time.h>
#include<bitset>
#include<numeric>
#include<unordered_set>
#include<unordered_map>
#include<complex>
using namespace std;
const long long mod=998244353;
const long long inf=mod*mod;
const long long d2=(mod+1)/2;
const double EPS=1e-11;
const double INF=1e+10;
const double PI=acos(-1.0);
const int C_SIZE = 11100000;
const int UF_SIZE = 3100000;
namespace{
	long long fact[C_SIZE];
	long long finv[C_SIZE];
	long long inv[C_SIZE];
	inline long long Comb(int a,int b){
	 	if(a<b||b<0)return 0;
	 	return fact[a]*finv[b]%mod*finv[a-b]%mod;
	}
	void init_C(int n){
		fact[0]=finv[0]=inv[1]=1;
		for(int i=2;i<n;i++){
			inv[i]=(mod-(mod/i)*inv[mod%i]%mod)%mod;
		}
		for(int i=1;i<n;i++){
			fact[i]=fact[i-1]*i%mod;
			finv[i]=finv[i-1]*inv[i]%mod;
		}
	}
	long long pw(long long a,long long b){
		if(a<0LL)return 0;
		if(b<0LL)return 0;
		long long ret=1;
		while(b){
			if(b%2)ret=ret*a%mod;
			a=a*a%mod;
			b/=2;
		}
		return ret;
	}
	long long pw_mod(long long a,long long b,long long M){
		if(a<0LL)return 0;
		if(b<0LL)return 0;
		long long ret=1;
		while(b){
			if(b%2)ret=ret*a%M;
			a=a*a%M;
			b/=2;
		}
		return ret;
	}
	int pw_mod_int(int a,int b,int M){
		if(a<0)return 0;
		if(b<0)return 0;
		int ret=1;
		while(b){
			if(b%2)ret=(long long)ret*a%M;
			a=(long long)a*a%M;
			b/=2;
		}
		return ret;
	}
	int ABS(int a){return max(a,-a);}
	long long ABS(long long a){return max(a,-a);}
	double ABS(double a){return max(a,-a);}
	int sig(double r) { return (r < -EPS) ? -1 : (r > +EPS) ? +1 : 0; }
	int UF[UF_SIZE];
	void init_UF(int n){
		for(int i=0;i<n;i++)UF[i]=-1;
	}
	int FIND(int a){
		if(UF[a]<0)return a;
		return UF[a]=FIND(UF[a]);
	}
	void UNION(int a,int b){
		a=FIND(a);b=FIND(b);if(a==b)return;
		if(UF[a]>UF[b])swap(a,b);
		UF[a]+=UF[b];UF[b]=a;
	}
}
// ここから編集しろ
int main(){
	int a,b,c;
	scanf("%d%d%d",&a,&b,&c);
	init_C(310000);
	long long ret=0;
	for(int i=0;i<=c;i++){
		long long tmp=Comb(c,i)*(pw(b+i,a))%mod;
		if(c%2==i%2){
			ret=(ret+tmp)%mod;
		}else{
			ret=(ret+mod-tmp)%mod;
		}
	}
	// printf("%lld\n",ret);
	ret=ret*Comb(b,c)%mod;
	printf("%lld\n",ret);
}
0