QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#680780 | #5301. Modulo Ruins the Legend | wzxtsl | WA | 22ms | 3692kb | C++23 | 1.3kb | 2024-10-26 22:41:00 | 2024-10-26 22:41:01 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define fast ios::sync_with_stdio(false),cin.tie(0),cout.tie(0)
#define For(i,j,k) for (int i=(j);i<=(k);i++)
#define rof(i,j,k) for (int i=(j);i>=(k);i--)
#define ull unsigned long long
#define lowbit(x) ((x)&(-(x)))
#define PII pair<int,int>
#define int long long
#define endl "\n"
#define ls rt<<1
#define rs rt<<1|1
typedef long long ll;
const int mod = 998244353;
const double eps = 1e-9;
const int N=2e6+7;
int n,m,sum,x,t;
int exgcd(int a,int b,int c,int &x,int &y){
if(!b) return x=c/a,y=0,a;
int res=exgcd(b,a%b,c,y,x);
return y-=a/b*x,res;
}
int jie(int a,int b,int c){
int x,y,d=exgcd(a,b,c,x,y);
if(c%d==0) return (x%(b/d)+b/d)%(b/d);
return -1;
}
void solve(){
cin>>n>>m;
For(i,1,n)
{
cin>>x,sum+=x;
}
if(n&1)
{
int g=__gcd(n,m);
if(g==1) t=0;
else{
t=sum%g;
}
n=n/g,m=m/g;
cout<<t<<endl;
int d=0;
int s=((t-sum)/g*jie(n,m,1)%m+m)%m;
cout<<s<<" "<<d;
}
else{
int g=__gcd(n/2,m);
if(g==1) t=0;
else{
t=sum%g;
}
cout<<t<<endl;
int tp=n;
n=n/2/g,m=m/g;
int tot=(t-sum)/g*jie(n,m,1),d,s;
if(tot&1) d=1,s=(((t-sum)/g*jie(n,m,1)-tp-1)/2%m+m)%m;
else d=0,s=(((t-sum)/g*jie(n,m,1))/2%m+m)%m;
cout<<s<<" "<<d;
}
}
signed main(){
int t=1;
//cin>>t;
while(t--){
solve();
}
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3528kb
input:
6 24 1 1 4 5 1 4
output:
1 2 1
result:
ok ok
Test #2:
score: 0
Accepted
time: 0ms
memory: 3640kb
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: 3672kb
input:
1 1 0
output:
0 0 0
result:
ok ok
Test #4:
score: 0
Accepted
time: 0ms
memory: 3552kb
input:
1 1000000000 963837005
output:
0 36162995 0
result:
ok ok
Test #5:
score: 0
Accepted
time: 0ms
memory: 3688kb
input:
2 1 0 0
output:
0 0 0
result:
ok ok
Test #6:
score: 0
Accepted
time: 0ms
memory: 3692kb
input:
2 1000000000 948507269 461613424
output:
0 294939652 1
result:
ok ok
Test #7:
score: 0
Accepted
time: 8ms
memory: 3584kb
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: 21ms
memory: 3536kb
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 14640 1
result:
ok ok
Test #9:
score: -100
Wrong Answer
time: 22ms
memory: 3620kb
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 260427722 0
result:
wrong answer Result not equal to solution.