QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#589432#5301. Modulo Ruins the LegendqmqcbhcWA 24ms4632kbC++141.7kb2024-09-25 17:52:012024-09-25 17:52:01

Judging History

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

  • [2024-09-25 17:52:01]
  • 评测
  • 测评结果:WA
  • 用时:24ms
  • 内存:4632kb
  • [2024-09-25 17:52:01]
  • 提交

answer

#include<iostream>
#include<set>
#include<map>
#include<vector>
#include<algorithm>
#include<bitset>
#include<math.h>
#include<string>
#include<string.h>
#include<stack>
#include<queue>
#include<time.h>
#include<random>
using namespace std;
typedef long long ll;
mt19937 rnd(time(0));
ll gcd(ll a, ll b) {
	if (b == 0) return a;
	else return gcd(b, a % b);
}
ll ksm(ll x, ll y)
{
	ll ans = 1;
	while (y)
	{
		if (y & 1)
			ans *= x;
		x *= x;
		y >>= 1;
	}
	return ans;
}
ll exgcd(ll a, ll b, ll& x, ll& y) {
	if (b == 0) {
		x = 1, y = 0;
		return a;
	}
	ll r = exgcd(b, a % b, x, y);
	ll t = x;
	x = y;
	y = t - a / b * y;
	return r;
}
void fio()
{
	ios::sync_with_stdio();
	cin.tie(0);
	cout.tie(0);
}	
ll a[250000];
int main()
{
	fio();
	ll t=1;
	while (t--)
	{
		ll n, m;
		ll sum = 0;
		cin >> n >> m;
		for (ll i = 1; i <= n; i++) {
			cin >> a[i];
			sum += a[i];
		}
		sum %= m;
		ll x, y;
		ll tmp = gcd(n, n * (n + 1) / 2);
		exgcd(n, n * (n + 1) / 2,x,y);
		ll x1 = x, y1 = y;
		//cout << x1 << " " << y1 << endl;
		ll tt = gcd(tmp, m);
		exgcd(tmp, m,x,y);
//		ll x2 = x, y2 = y;
//		ll t1 = sum / tt * tt;
//		ll t2 = (sum / tt + 1) * tt;
		
//		bool flag = 0;
		ll k=((m-sum+tt-1)/tt)%m;
		//cout << k << endl;
		cout << (sum+k*tt-m)%m << endl;
//		ll res = min(sum - t1, t2 - sum);
		//cout << res << endl;
		//x1 *= x2;
		x1 *= k;
		x1 %= m;
		//y1 *= x2;
		y1 *= k;
		y1 %= m;
//		if (flag) {
//			x1 *= -1;
//			y1 *= -1;
//		}
		if (x1 < 0) {
			ll tmp = (0 - x1) / m + 1;
			x1 += tmp * m;
			x1 %= m;
		}
		if (y1 < 0) {
			ll tmp = (0 - y1) / m + 1;
			y1 += tmp * m;
			y1 %= m;
		}
		
		cout << x1 << " " << y1 << endl;
	}
	return 0;
}

詳細信息

Test #1:

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

input:

6 24
1 1 4 5 1 4

output:

1
15 3

result:

ok ok

Test #2:

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

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: 3708kb

input:

1 1
0

output:

0
0 0

result:

ok ok

Test #4:

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

input:

1 1000000000
963837005

output:

0
0 36162995

result:

ok ok

Test #5:

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

input:

2 1
0 0

output:

0
0 0

result:

ok ok

Test #6:

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

input:

2 1000000000
948507269 461613424

output:

0
410120693 589879307

result:

ok ok

Test #7:

score: 0
Accepted
time: 7ms
memory: 4472kb

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: 20ms
memory: 4632kb

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 9281

result:

ok ok

Test #9:

score: -100
Wrong Answer
time: 24ms
memory: 4620kb

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
860465250 184657996

result:

wrong answer Result not equal to solution.