QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#271116 | #5301. Modulo Ruins the Legend | arahato | WA | 7ms | 3592kb | C++14 | 840b | 2023-12-01 23:30:21 | 2023-12-01 23:30:21 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define int long long
int n,m,s,a,b,x,y;
int gcd(int x,int y){
return x?gcd(y%x,x):y;
}
int exgcd(int a,int b,int &x,int &y){
if(!b) return x=1,y=0,a;
int g;return g=exgcd(b,a%b,y,x),y-=a/b*x,g;
}
auto solve(int a,int b,int c){
int x,y,g;
g=exgcd(a,b,x,y);
if(c%g) return pair<int,int>{-1,-1};
x*=c/g;
x=(x%b+b)%b;
y=(c-a*x)/b;
// cerr<<a<<" "<<b<<" "<<c<<" "<<x<<" "<<y<<endl;
return pair<int,int>{x,y};
}
signed main(){
ios::sync_with_stdio(0);
cin>>n>>m;
for(int i=1,x;i<=n;i++) cin>>x,s=(s+x)%m;
int A=n,B=n*(n+1)/2;
int g=gcd(A,B);
for(int i=0;i<n;i++){
pair<int,int> a=solve(g,m,i-s);
if(a.first==-1) continue;
pair<int,int> b=solve(A,B,(a.first+m*n)*g);
cout<<i<<endl<<b.first%m<<" "<<b.second%m<<endl;
break;
}
}
详细
Test #1:
score: 100
Accepted
time: 1ms
memory: 3408kb
input:
6 24 1 1 4 5 1 4
output:
1 15 19
result:
ok ok
Test #2:
score: 0
Accepted
time: 0ms
memory: 3416kb
input:
7 29 1 9 1 9 8 1 0
output:
0 7 20
result:
ok ok
Test #3:
score: 0
Accepted
time: 0ms
memory: 3408kb
input:
1 1 0
output:
0 0 0
result:
ok ok
Test #4:
score: 0
Accepted
time: 0ms
memory: 3404kb
input:
1 1000000000 963837005
output:
0 0 36162995
result:
ok ok
Test #5:
score: 0
Accepted
time: 0ms
memory: 3404kb
input:
2 1 0 0
output:
0 0 0
result:
ok ok
Test #6:
score: 0
Accepted
time: 0ms
memory: 3348kb
input:
2 1000000000 948507269 461613424
output:
0 2 863293101
result:
ok ok
Test #7:
score: 0
Accepted
time: 4ms
memory: 3416kb
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: 3420kb
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 999989281
result:
ok ok
Test #9:
score: 0
Accepted
time: 7ms
memory: 3380kb
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 813911294 998186562
result:
ok ok
Test #10:
score: 0
Accepted
time: 4ms
memory: 3396kb
input:
100000 823593588 49428507 531539751 61870891 800048628 775048962 784733848 328557377 689322372 219461104 675220341 766029393 488914111 239397724 96030886 535128775 725148224 781428428 415057434 63184780 813491758 45833062 206477264 794055396 620712453 773776688 121478140 274571586 180906090 39075043...
output:
0 624200000 823580166
result:
ok ok
Test #11:
score: 0
Accepted
time: 0ms
memory: 3592kb
input:
100000 983275893 454625390 806969222 617741665 837404489 938645284 681398122 407211415 331494759 297580058 157522489 86886529 279559123 314433333 128017817 334728209 485708969 389458361 293383056 700448142 179967281 812270136 157507274 455502368 464300877 103838359 833551145 360433787 444681395 7501...
output:
0 208124107 983245104
result:
ok ok
Test #12:
score: 0
Accepted
time: 4ms
memory: 3404kb
input:
99999 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 #13:
score: 0
Accepted
time: 7ms
memory: 3420kb
input:
99999 238957253 68606395 53811313 95378516 109308150 65279352 125763646 16026342 38880935 116271524 62503327 67732472 195242815 49755462 238084368 145043512 123589025 37521794 124245266 123859798 135679999 133334477 229769662 113059739 78645151 125785473 169825718 204464350 153216471 171447059 23236...
output:
0 8920778 238937968
result:
ok ok
Test #14:
score: -100
Wrong Answer
time: 7ms
memory: 3420kb
input:
99999 1000000000 773048742 726584889 597425040 944388841 710710917 747919780 132563193 839347904 483913695 95381937 7446129 100858470 602901041 590306547 547459370 292951919 853573243 47681567 524669205 506410451 331535043 37436560 637160298 365763694 709388434 793664195 901206820 151514497 60590731...
output:
0 -1 -1
result:
wrong answer Integer parameter [name=s] equals to -1, violates the range [0, 999999999]