用户输出
2
系统信息
Exited with return code 0
编号 | 题目 | 状态 | 分数 | 总时间 | 内存 | 代码 / 答案文件 | 提交者 | 提交时间 |
---|---|---|---|---|---|---|---|---|
#114103 | #1279. zxh修习模法 | Accepted | 100 | 115 ms | 384 K | C++ / 426 B | 77 | 2024-07-14 16:47:45 |
#include <bits/stdc++.h>
using namespace std;
long long mod(long long a, long long b, int p) {
long long result = 0;
a %= p;
while (b > 0) {
if (b & 1) {
result = (result + a) % p;
}
a = (a * 2) % p;
b >>= 1;
}
return result;
}
int main() {
long long a, b;
int p;
cin >> a >> b >> p;
cout << mod(a, b, p) << endl;
return 0;
}
用户输出
964065344
系统信息
Exited with return code 0
用户输出
107420082
系统信息
Exited with return code 0
用户输出
387035035
系统信息
Exited with return code 0
用户输出
154265613
系统信息
Exited with return code 0
用户输出
5266640
系统信息
Exited with return code 0
用户输出
883867210
系统信息
Exited with return code 0
用户输出
7237432
系统信息
Exited with return code 0
用户输出
674623886
系统信息
Exited with return code 0
用户输出
759144015
系统信息
Exited with return code 0
用户输出
100023892
系统信息
Exited with return code 0
用户输出
802360756
系统信息
Exited with return code 0
用户输出
338948309
系统信息
Exited with return code 0
用户输出
737564071
系统信息
Exited with return code 0
用户输出
243841912
系统信息
Exited with return code 0
用户输出
737564071
系统信息
Exited with return code 0
用户输出
737564071
系统信息
Exited with return code 0
用户输出
1595544236
系统信息
Exited with return code 0
用户输出
513096518
系统信息
Exited with return code 0