3 条题解
-
2梁宝仁 (liangbaoneng) LV 8 @ 2024-10-24 19:38:54
#include<iostream> using namespace std; typedef unsigned long long ull; ull a,b,p,res; int main() { cin>>a>>b>>p; while(b) { if(b&1) res = (res + a)%p; b = b / 2; a = (a * 2)%p; } cout<<res; }
-
02024-11-19 20:21:46@
#include<bits/stdc++.h> using namespace std; long long a,b,p,ans=0; int main(){ cin >>a>>b>>p; while(b){ if(b & 1) ans=(ans+a)%p; a=(a*2)%p; b>>=1; } cout<<ans%p; }
-
02024-10-25 19:56:19@
666
- 1
信息
- ID
- 3
- 时间
- 1000ms
- 内存
- 128MiB
- 难度
- 8
- 标签
- 递交数
- 2084
- 已通过
- 379
- 上传者