Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
100291 scl111104 [HNOI2008]越狱 C++ 解答错误 10 0 MS 240 KB 404 2023-08-25 10:51:41

Tests(1/10):


#include<bits/stdc++.h> using namespace std; int n, m; const int mo = 100003; int p(int a,int b) { int ans = 1; while(b != 0) { if(b & 1 == 1) { ans *= a; ans %= mo; } b /= 2; a = ((a % mo) * (a % mo)) % mo; } return ans; } int main(){ cin >> m >> n; cout << ((p(m, n) % mo - (m * p(m - 1, n - 1))) % mo + mo ) % mo; return 0; }


测评信息: