結果

問題 No.2394 部分和乗総和
ユーザー tailstails
提出日時 2023-07-31 16:05:00
言語 cLay
(20240714-1)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 8,365 ms
コンパイル使用メモリ 220,408 KB
実行使用メモリ 12,312 KB
最終ジャッジ日時 2024-10-10 09:23:05
合計ジャッジ時間 9,667 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
9,544 KB
testcase_01 AC 9 ms
12,312 KB
testcase_02 AC 9 ms
9,676 KB
testcase_03 AC 8 ms
9,800 KB
testcase_04 AC 9 ms
9,672 KB
testcase_05 AC 8 ms
9,800 KB
testcase_06 AC 8 ms
9,848 KB
testcase_07 AC 8 ms
9,800 KB
testcase_08 AC 9 ms
9,672 KB
testcase_09 AC 9 ms
9,672 KB
testcase_10 AC 8 ms
9,676 KB
testcase_11 AC 8 ms
9,800 KB
testcase_12 AC 8 ms
9,796 KB
testcase_13 AC 12 ms
9,796 KB
testcase_14 AC 19 ms
10,312 KB
testcase_15 AC 20 ms
10,440 KB
testcase_16 AC 25 ms
10,568 KB
testcase_17 AC 41 ms
10,972 KB
testcase_18 AC 42 ms
11,020 KB
testcase_19 AC 39 ms
11,060 KB
testcase_20 AC 29 ms
10,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ull c[32];
ll@n;
ull@m,@b,z=1;
m%=b;
c[0]=m;
rep(i,31){
	c[i+1]=c[i]*c[i]%b;
}
ull p=EulerPhi(b);
rep(n){
	ull@a;
	a=(a-1)%p+1;
	ull r=1;
	rep(i,32){
		if(a&1){
			r=r*c[i]%b;
		}
		a>>=1;
	}
	z=z*(r+1)%b;
}
wt(z);
0