QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#210273#7562. Except Oneucup-team1251#WA 1ms3500kbC++231.2kb2023-10-11 10:27:112023-10-11 10:27:12

Judging History

你现在查看的是最新测评结果

  • [2023-10-11 10:27:12]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3500kb
  • [2023-10-11 10:27:11]
  • 提交

answer

#include <cstdio>
#include <iostream>
#include <algorithm>
#include <queue>
#include <cmath>
#include <cstring>
#include <string>
#include <stack>
#include <deque>
#include <map>
#include <set>
#include <bitset>
#include <unordered_map>
#include <unordered_set>
using namespace std;
#define ll long long
#define endl "\n"
#define S second
#define F first
#define ln cout<<endl;
#define mem(a) memset((a),0,sizeof (a));
#define yes cout<<"YES"<<endl;
#define no cout<<"NO"<<endl;
#define debug cout<<"here!"<<endl;
#define int long long
ll cnt,n,m,t,ans,ant;
const int N=2e5+10;
const int INF=0x3f3f3f3f;
string str;
int p,k,tt;
ll fastpower(int base,int power)
{
	int ans=1;
	while(power)
	{
		if(power&1)
		{
			ans=ans*base;
			if(ans<0)
			{
				int tmp=-ans;
				int num=tmp/p;
				ans+=p*(num+1);
				ans%=p;
			}
		}
		power>>=1;
		base=base*base%p;
	}
	return ans;
}
void solve()
{
//	p=10000000000; 
//	cout<<fastpower(2,23);
	cin>>p>>k>>tt;
	
	int ans=fastpower(p-k,tt)%p;
	cout<<ans<<endl;
	
	return;
}

signed main()
{
	ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
	ll _=1;
//	cin>>_;
	while(_--)
		solve();
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3500kb

input:

7 5 3

output:

1

result:

ok 1 number(s): "1"

Test #2:

score: 0
Accepted
time: 1ms
memory: 3436kb

input:

11 6 7

output:

3

result:

ok 1 number(s): "3"

Test #3:

score: 0
Accepted
time: 0ms
memory: 3396kb

input:

3 2 1

output:

1

result:

ok 1 number(s): "1"

Test #4:

score: -100
Wrong Answer
time: 0ms
memory: 3452kb

input:

596620183 516846890 38276329

output:

549993069

result:

wrong answer 1st numbers differ - expected: '135352707', found: '549993069'