QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#606984#5301. Modulo Ruins the Legend999#RE 7ms3932kbC++14756b2024-10-03 13:27:012024-10-03 13:27:04

Judging History

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

  • [2024-10-03 13:27:04]
  • 评测
  • 测评结果:RE
  • 用时:7ms
  • 内存:3932kb
  • [2024-10-03 13:27:01]
  • 提交

answer

#include<bits/stdc++.h>
#define For(a,b,c) for(int a=b;a<=c;++a)
using namespace std;
int n,m,s,tt;
int gcd(int a,int b) {
	return b?gcd(b,a%b):a;
}
int x,y,t,g;
void god(int a,int b){
	if(b==0)x=1,y=0,g=a;
	else{
		god(b,a%b);
		t=x;x=y;
		y=t-a/b*y;
	}
}
int f(int a,int b,int m){
	god(a,m);
	b/=g;
	x=(1ll*x*b)%(m/g);
	assert((a*x%m+m)%m==(b*g+m)%m);
	return x;
}
int cook(int x) {
	g=gcd(n,m);
	int c=(m-x+g-1)/g;
	int y=(x+c*g)%m;
	tt=(f(n,(y-x+m)%m,m)%m+m)%m;
	return y;
}
int main(){
	scanf("%d%d",&n,&m);
	For(i,1,n) {
		int x; scanf("%d",&x);
		(s+=x)%=m;
	}
	int dd=(1LL*n*(n+1)/2)%m;
	int a=cook((s+dd)%m);
	int b=cook(s);
	if(a<b) cook((s+dd)%m),printf("%d\n%d 1",a,tt);
	else printf("%d\n%d 0",b,tt);
}

詳細信息

Test #1:

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

input:

6 24
1 1 4 5 1 4

output:

1
2 1

result:

ok ok

Test #2:

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

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

input:

1 1
0

output:

0
0 0

result:

ok ok

Test #4:

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

input:

1 1000000000
963837005

output:

0
36162995 0

result:

ok ok

Test #5:

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

input:

2 1
0 0

output:

0
0 0

result:

ok ok

Test #6:

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

input:

2 1000000000
948507269 461613424

output:

0
294939652 1

result:

ok ok

Test #7:

score: 0
Accepted
time: 4ms
memory: 3924kb

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

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
4640 1

result:

ok ok

Test #9:

score: -100
Runtime Error

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:


result: