結果

問題 No.2394 部分和乗総和
ユーザー tailstails
提出日時 2023-07-31 16:16:43
言語 cLay
(20240714-1)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 7,793 ms
コンパイル使用メモリ 220,216 KB
実行使用メモリ 13,188 KB
最終ジャッジ日時 2024-10-10 09:34:58
合計ジャッジ時間 8,898 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
10,564 KB
testcase_01 AC 11 ms
10,816 KB
testcase_02 AC 11 ms
10,820 KB
testcase_03 AC 12 ms
12,732 KB
testcase_04 AC 11 ms
10,708 KB
testcase_05 AC 12 ms
10,912 KB
testcase_06 AC 12 ms
12,736 KB
testcase_07 AC 11 ms
10,868 KB
testcase_08 AC 11 ms
10,692 KB
testcase_09 AC 11 ms
10,692 KB
testcase_10 AC 11 ms
10,692 KB
testcase_11 AC 11 ms
12,864 KB
testcase_12 AC 11 ms
13,188 KB
testcase_13 AC 12 ms
10,820 KB
testcase_14 AC 14 ms
11,332 KB
testcase_15 AC 14 ms
11,200 KB
testcase_16 AC 16 ms
11,584 KB
testcase_17 AC 20 ms
11,844 KB
testcase_18 AC 19 ms
13,120 KB
testcase_19 AC 19 ms
12,864 KB
testcase_20 AC 19 ms
11,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ull c[2][65536];
ll@n;
ull@m,@b,z=1;
m%=b;
rep(j,2){
	c[j][0]=1;
	c[j][1]=j==0?m:c[j-1][65535]*c[j-1][1]%b;
	rep(i,2,65536){
		c[j][i]=c[j][i-1]*c[j][1]%b;
	}
}
ull p=EulerPhi(b);
rep(n){
	ull@a;
	a=(a-1)%p+1;
	z=z*(c[1][a>>16]*c[0][a&65535]%b+1)%b;
}
wt(z);
0