Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
100438 | 赵德明 | [HNOI2008]越狱 | C++ | 解答错误 | 10 | 0 MS | 240 KB | 617 | 2023-08-25 21:13:41 |
#include<bits/stdc++.h> using namespace std; int fastpow(int a,int b,int mod){ int num=1; for(int i=1;i<=b;i++){ num*=a; num%=mod; } return num; } int fastpow2(int a,int b,int mod){ int num=1; int temp; if(b==1) return a; if(b==0) return 1; if(b%2==0) { temp = (fastpow2(a,b/2,mod))%mod; return (temp * temp)%mod; } else { temp = (fastpow2(a,(b-1)/2,mod))%mod; return (a * temp * temp)%mod; } } int main(){ int m,n; cin>>m>>n; int a=fastpow2(m,n,10003)%10003; int b=(fastpow2(m-1,n-1,10003)*m)%10003; cout<<(a+10003-b)%10003; return 0; }