QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#562173#5301. Modulo Ruins the Legendqinglu09WA 6ms3708kbC++141.5kb2024-09-13 15:26:332024-09-13 15:26:33

Judging History

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

  • [2024-09-13 15:26:33]
  • 评测
  • 测评结果:WA
  • 用时:6ms
  • 内存:3708kb
  • [2024-09-13 15:26:33]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef pair<int,int> PII;
typedef pair<ll,ll> PLL;
#define endl '\n'
#define debug(x) cout<<#x<<": "<<x<<endl
#define lowbit(x) (x&-x)
#define gcd __gcd
#define i128 __int128
#define rep(i,a,b) for(ll i=(a);i<=(b);i++)
#define per(i,a,b) for(ll i=(a);i>=(b);i--)
#define fi first 
#define se second 
const int N=1e5+10,M=2e5+10;
const ll mod=998244353;
const double eps=1e-12;
const double pi=acos(-1.0);
const double pi1=pi/180,pi2=180/pi;
mt19937_64 rnd(chrono::steady_clock::now().time_since_epoch().count());
//unordered_map<int,int>mp;
#define poly vector<ll>

ll exgcd(ll a,ll b,ll &x,ll &y)//返回gcd(a,b)
{
	if(b==0)
	{
		x=1,y=0;
		return a;
	}
	ll x1,y1,d;
	d=exgcd(b,a%b,x1,y1);
	x=y1,y=x1-a/b*y1;
	return d;
}

void solve()
{
	ll n,m;
	cin>>n>>m;
	ll sum=0;
	for(int i=1;i<=n;i++)
	{
		ll x;
		cin>>x;
		sum+=x;
	}
	ll g,p;
	ll a=__gcd(__gcd(n,n*(n+1)/2),-m),b=-1;
	exgcd(a,b,g,p);
	ll num=-sum/__gcd(a,b);
	ll mo=abs(a/__gcd(a,b));
	p=(p*num%mo+mo)%mo;
	ll t,k;
	a=__gcd(n,n*(n+1)/2),b=-m;
	exgcd(a,b,t,k);
	t*=(p-sum)/__gcd(a,b);
	ll s,d;
	a=n,b=n*(n+1)/2;
	exgcd(a,b,s,d);
	s*=t,d*=t;
	cout<<p<<endl;
	cout<<(s%m+m)%m<<" "<<(d%m+m)%m<<endl;
}

int main()
{
    ios::sync_with_stdio(0);
    cin.tie(0),cout.tie(0);

    int T=1;
    //cin>>T;
    while(T--)
    {
        solve();
    }
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

6 24
1 1 4 5 1 4

output:

1
15 19

result:

ok ok

Test #2:

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

input:

7 29
1 9 1 9 8 1 0

output:

0
0 0

result:

ok ok

Test #3:

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

input:

1 1
0

output:

0
0 0

result:

ok ok

Test #4:

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

input:

1 1000000000
963837005

output:

0
0 36162995

result:

ok ok

Test #5:

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

input:

2 1
0 0

output:

0
0 0

result:

ok ok

Test #6:

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

input:

2 1000000000
948507269 461613424

output:

0
410120693 589879307

result:

ok ok

Test #7:

score: 0
Accepted
time: 3ms
memory: 3580kb

input:

100000 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0...

output:

0
0 0

result:

ok ok

Test #8:

score: 0
Accepted
time: 6ms
memory: 3552kb

input:

100000 1000000000
253614966 278270960 980235895 498158918 928430170 216003119 852570558 948400590 239257296 897053667 294741176 38297441 382677590 406314557 609468973 854148232 314532767 738191551 158215002 5865825 920471826 380037058 356271728 749175327 28319049 208101105 953758995 896570758 521930...

output:

46613
535950000 999089281

result:

ok ok

Test #9:

score: -100
Wrong Answer
time: 3ms
memory: 3704kb

input:

100000 998244353
561002596 498658036 721339539 63377827 532179242 934651519 234198881 490149304 2056307 499913682 427679408 694677560 516580968 300129454 816286800 688594301 183049581 456627420 495848352 273497462 953217060 796225499 207179832 728054671 409492082 25003432 810431468 206421553 5569626...

output:

0
979269974 520855444

result:

wrong answer Result not equal to solution.