QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#125752 | #6667. Prosjek | AFewSuns | 16 | 204ms | 24764kb | C++14 | 5.2kb | 2023-07-17 15:28:01 | 2023-07-17 15:28:05 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
namespace my_std{
#define ll long long
#define bl bool
ll my_pow(ll a,ll b,ll mod){
ll res=1;
if(!b) return 1;
while(b){
if(b&1) res=(res*a)%mod;
a=(a*a)%mod;
b>>=1;
}
return res;
}
ll qpow(ll a,ll b){
ll res=1;
if(!b) return 1;
while(b){
if(b&1) res*=a;
a*=a;
b>>=1;
}
return res;
}
#define db double
#define pf printf
#define pc putchar
#define fr(i,x,y) for(register ll i=(x);i<=(y);i++)
#define pfr(i,x,y) for(register ll i=(x);i>=(y);i--)
#define go(u) for(ll i=head[u];i;i=e[i].nxt)
#define enter pc('\n')
#define space pc(' ')
#define fir first
#define sec second
#define MP make_pair
#define il inline
#define inf 1e18
#define random(x) rand()*rand()%(x)
#define inv(a,mod) my_pow((a),(mod-2),(mod))
il ll read(){
ll sum=0,f=1;
char ch=0;
while(!isdigit(ch)){
if(ch=='-') f=-1;
ch=getchar();
}
while(isdigit(ch)){
sum=sum*10+(ch^48);
ch=getchar();
}
return sum*f;
}
il void write(ll x){
if(x<0){
x=-x;
pc('-');
}
if(x>9) write(x/10);
pc(x%10+'0');
}
il void writeln(ll x){
write(x);
enter;
}
il void writesp(ll x){
write(x);
space;
}
}
using namespace my_std;
vector<pair<ll,ll> > ans;
vector<ll> A,B,S0,S2;
ll t,n,c[1000010];
il void solve1(){
S0.clear();
S2.clear();
fr(i,1,n){
if(c[i]%4==0) S0.push_back(c[i]);
else S2.push_back(c[i]);
}
while(1){
if((ll)S0.size()>=2){
ll x=S0.back(),y;
S0.pop_back();
y=S0.back();
S0.pop_back();
ans.push_back(MP(x,y));
if(((x+y)/2)%4==0) S0.push_back((x+y)/2);
else S2.push_back((x+y)/2);
continue;
}
if((ll)S2.size()>=2){
ll x=S2.back(),y;
S2.pop_back();
y=S2.back();
S2.pop_back();
ans.push_back(MP(x,y));
if(((x+y)/2)%4==0) S0.push_back((x+y)/2);
else S2.push_back((x+y)/2);
continue;
}
break;
}
if(!S0.empty()&&!S2.empty()) ans.push_back(MP(S0[0],S2[0]));
}
il bl chk0(){
ll d=0;
fr(i,1,60){
bl ck=0;
fr(j,0,(ll)B.size()-1) if(((B[j]>>i)&1)!=((B[0]>>i)&1)) ck=1;
if(ck){
d=i;
break;
}
}
if(!d) return 0;
ll id=0;
fr(i,0,(ll)B.size()-1) if((B[i]>>d)&1) id=i;
swap(B[(ll)B.size()-1],B[id]);
fr(i,0,(ll)B.size()-1) if(!((B[i]>>d)&1)) id=i;
swap(B[(ll)B.size()-2],B[id]);
pfr(i,d-1,1){
if((ll)B.size()<=2) return 0;
ll x=B.back(),y;
B.pop_back();
y=B.back();
B.pop_back();
ans.push_back(MP(x,y));
B.push_back((x+y)/2);
}
return 1;
}
il bl chk1(){
swap(A,B);
fr(i,0,(ll)A.size()-1) A[i]++;
fr(i,0,(ll)B.size()-1) B[i]++;
return chk0();
}
il void solve2(){
ll a=0,b=0;
fr(i,0,(ll)B.size()-1) if(B[i]%4==0) a=i;
swap(B[(ll)B.size()-1],B[a]);
fr(i,0,(ll)B.size()-1) if(B[i]%4==2) b=i;
swap(B[(ll)B.size()-2],B[b]);
a=B.back();
B.pop_back();
b=B.back();
B.pop_back();
while(1){
if((ll)A.size()>=2){
ll x=A.back(),y;
A.pop_back();
y=A.back();
A.pop_back();
ans.push_back(MP(x,y));
if(((x+y)/2)&1) A.push_back((x+y)/2);
else B.push_back((x+y)/2);
continue;
}
if((ll)B.size()>=2){
ll x=B.back(),y;
B.pop_back();
y=B.back();
B.pop_back();
ans.push_back(MP(x,y));
if(((x+y)/2)&1) A.push_back((x+y)/2);
else B.push_back((x+y)/2);
continue;
}
break;
}
if(A.empty()){
if(B[0]%4==0){
ans.push_back(MP(a,B[0]));
ans.push_back(MP((a+B[0])/2,b));
}
else{
ans.push_back(MP(b,B[0]));
ans.push_back(MP((b+B[0])/2,a));
}
}
else if(B.empty()){
ans.push_back(MP(a,b));
ans.push_back(MP((a+b)/2,A[0]));
}
else{
if(B[0]%4==0){
if((a/4+b/4+A[0]/2)&1){
ans.push_back(MP(a,b));
ans.push_back(MP((a+b)/2,A[0]));
ans.push_back(MP(((a+b)/2+A[0])/2,B[0]));
}
else if((B[0]/4+b/4+A[0]/2)&1){
ans.push_back(MP(B[0],b));
ans.push_back(MP((B[0]+b)/2,A[0]));
ans.push_back(MP(((B[0]+b)/2+A[0])/2,a));
}
else{
ans.push_back(MP(a,B[0]));
ans.push_back(MP((a+B[0])/2,b));
ans.push_back(MP(((a+B[0])/2+b)/2,A[0]));
}
}
else{
if((a/4+b/4+A[0]/2)&1){
ans.push_back(MP(a,b));
ans.push_back(MP((a+b)/2,A[0]));
ans.push_back(MP(((a+b)/2+A[0])/2,B[0]));
}
else if((a/4+B[0]/4+A[0]/2)&1){
ans.push_back(MP(a,B[0]));
ans.push_back(MP((a+B[0])/2,A[0]));
ans.push_back(MP(((a+B[0])/2+A[0])/2,b));
}
else{
ans.push_back(MP(b,B[0]));
ans.push_back(MP((b+B[0])/2,a));
ans.push_back(MP(((b+B[0])/2+a)/2,A[0]));
}
}
}
}
il void clr(){
ans.clear();
A.clear();
B.clear();
}
int main(){
t=read();
while(t--){
n=read();
fr(i,1,n) c[i]=read();
fr(i,1,n){
if(c[i]&1) A.push_back(c[i]);
else B.push_back(c[i]);
}
if(A.empty()){
solve1();
fr(i,0,(ll)ans.size()-1) pf("%lld %lld\n",ans[i].fir,ans[i].sec);
}
else if(B.empty()){
fr(i,1,n) c[i]++;
solve1();
fr(i,0,(ll)ans.size()-1) pf("%lld %lld\n",ans[i].fir-1,ans[i].sec-1);
}
else if(chk0()){
solve2();
fr(i,0,(ll)ans.size()-1) pf("%lld %lld\n",ans[i].fir,ans[i].sec);
}
else if(chk1()){
solve2();
fr(i,0,(ll)ans.size()-1) pf("%lld %lld\n",ans[i].fir-1,ans[i].sec-1);
}
else writeln(-1);
clr();
}
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 9
Accepted
time: 1ms
memory: 3660kb
input:
99 4 739880851158065302 19206582949872932 883064254701115295 222072661880779376 7 148399819461615003 209088712310207988 53191076581680214 445068618251612752 230505279594622109 115754892157516718 804173775829453588 2 77979357045500669 41693388829622019 3 341612949433488278 609808714829036935 19994167...
output:
19206582949872932 739880851158065302 379543717053969117 883064254701115295 631303985877542206 222072661880779376 230505279594622109 148399819461615003 189452549528118556 445068618251612752 317260583889865654 53191076581680214 185225830235772934 209088712310207988 804173775829453588 11575489215751671...
result:
ok correct (99 test cases)
Test #2:
score: 0
Accepted
time: 1ms
memory: 3552kb
input:
94 4 522567009208273608 11643656493074325 186427311250002481 123849906165842189 5 106161059262489233 415343718607892434 327977047389442178 962072443749424073 442437950417792236 2 183203550209212188 845051373320458660 4 438596026703410712 750951289026921248 112070483603621346 883810241305765624 4 145...
output:
123849906165842189 186427311250002481 155138608707922335 11643656493074325 83391132600498330 522567009208273608 962072443749424073 106161059262489233 442437950417792236 327977047389442178 385207498903617207 534116751505956653 459662125204786930 415343718607892434 845051373320458660 18320355020921218...
result:
ok correct (94 test cases)
Test #3:
score: -9
Wrong Answer
time: 1ms
memory: 3588kb
input:
100 6 992926089095812859 592566222682195905 851047547791588090 117812034990980493 287668656568989067 500497313856354147 5 422579495815431679 738445394838743009 952584027249447301 804094328392164866 131591678779711861 6 671044256239146581 730689616081395646 623998023808544596 817401707748253055 55805...
output:
500497313856354147 592566222682195905 546531768269275026 851047547791588090 287668656568989067 117812034990980493 202740345779984780 698789658030431558 450765001905208169 992926089095812859 738445394838743009 952584027249447301 845514711044095155 131591678779711861 488553194911903508 804094328392164...
result:
wrong answer there's no 527081287604178781 in the current set (test case 44)
Subtask #2:
score: 0
Wrong Answer
Test #16:
score: 23
Accepted
time: 1ms
memory: 3540kb
input:
100 3 3 3 2 3 4 1 1 4 1 3 4 4 6 4 4 2 3 1 2 4 0 2 1 4 3 0 2 0 7 3 3 1 1 3 4 0 2 0 4 4 1 4 2 3 7 4 0 0 3 2 3 4 4 4 2 0 3 7 0 2 2 1 4 2 4 7 3 0 3 1 2 0 3 4 4 3 1 4 6 2 3 0 1 3 4 5 1 4 0 3 4 5 4 2 0 4 2 3 0 1 2 6 4 1 4 2 0 4 7 4 2 4 3 1 3 1 4 1 4 4 0 2 1 1 6 0 3 3 0 0 4 7 4 3 0 3 3 3 4 4 4 1 1 3 6 2 0 ...
output:
-1 -1 4 4 3 1 2 4 1 3 2 2 2 4 4 2 3 3 4 2 3 1 2 0 0 0 0 2 4 0 1 3 2 2 3 3 3 1 2 2 4 0 3 1 2 2 2 4 3 3 0 0 0 4 2 2 2 4 3 3 0 2 1 3 2 4 4 2 3 1 2 2 2 0 4 2 3 1 3 1 3 3 2 0 1 3 2 2 2 0 4 4 3 1 2 4 3 1 2 4 3 3 0 2 1 3 4 0 3 1 2 2 2 4 4 0 2 2 2 2 4 2 0 2 1 1 4 4 4 4 4 2 3 1 2 0 1 3 1 3 2 2 2 4 4 2 3 3 4 ...
result:
ok correct (100 test cases)
Test #17:
score: 0
Accepted
time: 0ms
memory: 3460kb
input:
94 6 4 4 4 4 3 1 7 1 2 2 0 3 1 4 5 4 2 1 1 2 4 4 1 2 2 2 1 0 6 4 4 0 3 2 4 5 1 2 4 3 4 7 1 4 2 1 2 4 1 4 0 2 2 3 6 3 4 2 1 4 3 2 0 2 7 2 1 1 0 2 0 2 4 3 4 1 3 5 2 4 2 1 3 2 3 2 7 1 2 1 1 4 2 0 5 2 2 1 1 3 6 3 1 2 2 4 4 3 2 3 0 5 1 1 1 0 3 4 3 4 2 3 3 4 0 2 3 1 1 1 2 3 0 4 3 3 3 4 4 1 3 3 3 4 2 3 3 1...
output:
4 4 4 4 4 4 3 1 2 4 1 3 2 4 3 1 2 2 2 2 2 0 1 1 4 2 3 1 2 2 4 2 3 1 2 2 -1 0 4 2 4 3 3 4 2 3 3 3 1 2 4 4 2 3 3 1 1 1 1 2 4 3 1 2 2 2 4 0 2 1 3 2 2 3 1 2 4 3 3 4 2 3 3 0 2 1 1 2 0 1 1 2 2 2 0 1 1 3 1 2 4 3 3 3 1 2 2 2 2 2 4 -1 1 1 1 1 4 2 3 1 2 2 2 0 2 2 1 1 1 3 2 2 1 3 2 4 2 2 2 4 3 3 0 2 1 3 1 1 3 ...
result:
ok correct (94 test cases)
Test #18:
score: 0
Accepted
time: 0ms
memory: 3552kb
input:
100 2 0 4 6 0 3 2 2 3 2 6 0 3 2 3 2 4 5 3 2 2 3 2 4 2 1 1 4 5 0 2 0 0 4 4 1 2 4 0 5 3 0 4 4 1 6 3 4 4 4 3 0 6 2 2 3 4 3 2 5 3 1 4 0 4 3 2 1 1 5 3 2 1 1 1 5 1 1 4 2 2 3 2 2 4 5 2 3 1 0 3 3 1 1 3 5 3 1 1 1 2 2 1 2 4 2 2 4 2 5 2 2 0 0 3 5 3 0 4 0 2 5 2 2 1 1 4 6 1 1 3 2 2 0 4 4 3 4 4 3 0 0 4 2 2 3 7 0 ...
output:
4 0 3 3 2 2 0 2 1 3 2 2 3 3 2 0 1 3 2 2 2 4 -1 1 1 4 2 3 1 4 0 0 0 2 2 0 2 4 2 3 1 2 0 4 0 1 3 2 2 2 4 4 0 3 3 4 4 4 2 3 3 3 3 2 2 2 2 2 4 3 3 4 0 1 3 2 2 2 4 -1 1 1 1 1 1 3 2 2 1 1 4 2 3 1 2 2 2 2 4 2 3 1 0 2 1 3 2 2 1 1 3 1 1 1 1 1 1 3 2 2 -1 2 2 2 2 4 2 0 2 1 3 2 2 2 0 4 0 0 2 1 3 2 2 1 1 4 2 3 1...
result:
ok correct (100 test cases)
Test #19:
score: -23
Wrong Answer
time: 1ms
memory: 3536kb
input:
99 7 5 8 3 10 4 3 7 7 3 7 2 9 0 1 8 7 10 6 10 7 8 2 9 7 5 7 1 2 3 5 4 7 1 8 6 10 7 5 9 7 8 2 3 8 7 7 2 7 6 5 9 1 5 0 7 7 10 2 3 4 4 9 2 7 2 8 9 2 4 2 9 7 5 5 4 7 8 4 3 7 6 2 5 5 7 3 2 7 6 3 3 7 8 1 3 7 4 5 4 4 1 4 9 7 0 7 2 6 10 9 9 7 10 9 9 3 2 4 1 7 5 8 5 5 3 3 6 7 0 7 7 0 10 5 8 7 8 3 1 2 2 7 10 ...
output:
7 3 5 3 4 8 4 10 7 5 6 6 1 9 5 7 6 8 7 3 0 2 1 5 9 7 8 10 6 10 8 8 8 2 5 9 5 3 1 7 4 4 4 2 3 5 4 4 9 5 7 7 7 1 4 6 8 10 9 5 7 7 7 3 2 8 5 5 8 2 5 5 7 5 1 9 5 5 0 6 3 5 4 6 9 3 6 4 2 10 4 2 3 5 4 6 9 9 2 8 5 9 2 2 2 4 3 7 4 8 3 7 5 5 5 5 4 6 5 5 6 2 3 7 5 5 5 5 4 2 3 5 3 1 7 3 5 3 4 2 8 6 7 3 5 1 4 4...
result:
wrong answer Integer -1 violates the range [0, 10^18] (test case 83)
Subtask #3:
score: 16
Accepted
Test #34:
score: 16
Accepted
time: 92ms
memory: 3656kb
input:
100000 5 846784256447769304 457696478728961702 128469521648960690 597630796847754190 104256763714529164 5 658897822238868978 472135077337628566 399538027669313322 622703684108675696 425723088635325654 5 917704960887390986 140817562615382054 877934664521057998 782212806618666818 616380973421914538 8 ...
output:
104256763714529164 846784256447769304 475520510081149234 597630796847754190 128469521648960690 457696478728961702 293083000188961196 536575653464451712 425723088635325654 399538027669313322 412630558152319488 622703684108675696 472135077337628566 658897822238868978 565516449788248772 517667121130497...
result:
ok correct (100000 test cases)
Test #35:
score: 0
Accepted
time: 102ms
memory: 3636kb
input:
100000 4 132941437397264810 143141501854884272 958712444844113692 341497234016264540 7 923004266892618172 15365813785503270 930609521602302292 819335542601433618 213670074288711286 150311691204302148 244405681344585926 5 371893080714371800 575829750571342010 292988012239447120 115093373296591180 268...
output:
341497234016264540 958712444844113692 650104839430189116 143141501854884272 396623170642536694 132941437397264810 150311691204302148 930609521602302292 540460606403302220 923004266892618172 244405681344585926 213670074288711286 229037877816648606 819335542601433618 524186710209041112 731732436647960...
result:
ok correct (100000 test cases)
Test #36:
score: 0
Accepted
time: 98ms
memory: 3576kb
input:
100000 4 928198344825292264 690070772109811286 244045206839989604 561025252182682906 3 627239866615848210 42470017740412280 54251562555326842 3 490057757292451598 818062735467254804 348318035919019310 2 551686081736618768 194488231774246450 3 112852023970360962 332810104058707034 451110399052627062 ...
output:
244045206839989604 928198344825292264 586121775832640934 561025252182682906 573573514007661920 690070772109811286 54251562555326842 627239866615848210 42470017740412280 340745714585587526 348318035919019310 490057757292451598 818062735467254804 419187896605735454 551686081736618768 19448823177424645...
result:
ok correct (100000 test cases)
Test #37:
score: 0
Accepted
time: 132ms
memory: 3700kb
input:
50000 15 970453612553526824 403854393807928174 722892131244078370 35115189723455662 375191889860000444 915405723947874872 635574780184696680 264400470199418708 859039596531178468 27938184881043946 553805664139227226 876314307095280030 571028682295683456 30435765695090076 81051167961127742 20 7987413...
output:
30435765695090076 571028682295683456 859039596531178468 264400470199418708 561720033365298588 635574780184696680 915405723947874872 375191889860000444 645298806903937658 598647406774997634 621973106839467646 300732223995386766 461352665417427206 81051167961127742 271201916689277474 87631430709528003...
result:
ok correct (50000 test cases)
Test #38:
score: 0
Accepted
time: 114ms
memory: 3596kb
input:
50000 20 998788559176849620 191593882411529926 342711646561735406 56435783243285828 213144199738872896 552932543009462260 862655508602678778 197769932466201968 649107231900330578 606332158266321414 679519095246181928 69228654018660218 907522706303602556 706594708190768848 317996892998797510 98299001...
output:
280145788708142508 801974222113409124 541060005410775816 982990013470682716 706594708190768848 907522706303602556 679519095246181928 197769932466201968 438644513856191948 552932543009462260 495788528432827104 213144199738872896 354466364085850000 56435783243285828 205451073664567914 8070587072471857...
result:
ok correct (50000 test cases)
Test #39:
score: 0
Accepted
time: 162ms
memory: 3540kb
input:
50000 19 687533614023914694 738663892302361454 628044408557611320 475365328934162610 242048409095362442 254414508714647088 415287407545536222 333427085181162020 691789987581261114 501496830456417768 370865072857248388 610878478005084624 460491699469405256 995621599317911412 72184531803437802 5221300...
output:
435000735991149736 522130070969414520 478565403480282128 995621599317911412 460491699469405256 610878478005084624 535685088737244940 370865072857248388 453275080797246664 501496830456417768 477385955626832216 333427085181162020 254414508714647088 628044408557611320 405406520403997118 737093501399096...
result:
ok correct (50000 test cases)
Test #40:
score: 0
Accepted
time: 141ms
memory: 3520kb
input:
30000 25 701453932981408346 465306500019836282 792774089369512740 928134668660137906 489548012753296822 563069662510759842 456553328586506700 752651620972947846 610563120623014800 946872198162810216 382124190056540228 528408240467204940 156080508230960224 755279683495886594 353003950140523154 726814...
output:
759546580482469476 671093790812801428 715320185647635452 264865148139811024 331430792491044112 156080508230960224 243755650361002168 528408240467204940 382124190056540228 946872198162810216 610563120623014800 456553328586506700 533558224604760750 664498194109675222 599028209357217986 386081945414103...
result:
ok correct (30000 test cases)
Test #41:
score: 0
Accepted
time: 147ms
memory: 3560kb
input:
30000 24 802553849623129746 211707666543464912 78106851365388652 41150834245659428 824295231323480318 65220471583082028 504011063830422278 582465764474213950 653316240753155704 254391730000013712 73470169815090336 70058062306145696 320805890715812130 762434076887201766 107191591092647094 66623182252...
output:
317895789993303868 476075710640293640 713862378171374300 684143755784659968 66623182252282192 70058062306145696 68340622279213944 73470169815090336 70905396047152140 254391730000013712 653316240753155704 65220471583082028 41150834245659428 78106851365388652 59628842805524040 211707666543464912 35926...
result:
ok correct (30000 test cases)
Test #42:
score: 0
Accepted
time: 148ms
memory: 3544kb
input:
30000 27 457692759396051910 105542225399435134 28952855744712754 551775949854678384 243201017518706110 830727952675976422 770508119165800012 202072001288194376 842102259870000526 184524967708115324 636362069740656520 654459612358466674 183209892432401444 100513548134942846 72707763558771580 42597951...
output:
932151312699294980 80157746650466448 935240383379985812 154087971015879464 968793307366073360 938142428437837892 88106760930326920 425979517791387492 72707763558771580 183209892432401444 127958827995586512 636362069740656520 382160448868121516 184524967708115324 283342708288118420 202072001288194376...
result:
ok correct (30000 test cases)
Test #43:
score: 0
Accepted
time: 204ms
memory: 24764kb
input:
100 365633 240280625535601202 938026129049958522 147115906397155306 652580989323075650 725975096118295602 205776298062652394 601103849421971138 331987681752388762 840580362429635958 835259996207496842 119358021292888398 319502650126227206 963133797479057582 879470558738716974 741484002023142690 3370...
output:
780781389890772134 462546456847920258 983273217073289170 54703858887732306 518988537980510738 121007210812414874 319997874396462806 542567485305147330 431282679850805068 621663923369346196 699873189331273774 290960058824475954 495416624077874864 526473301610075632 376100996009174838 9002308395152315...
result:
ok correct (100 test cases)
Test #44:
score: 0
Accepted
time: 181ms
memory: 24032kb
input:
100 468798 784219641558971418 868193736931466770 709669653094040434 820342537947112058 551143489403660526 267279653811163658 370522601251248390 368960240455457934 377406818992348662 446571520515917398 203417725700526758 781465163407686018 793863659816666930 689102809204233742 460833182899194594 8845...
output:
812530407663751406 882679806250695874 810693562577937022 8779693935145434 409736628256541228 847605106957223640 628670867606882434 965388653482500574 170815080687607818 69534330454674702 120174705571141260 797029760544691504 458602233057916382 237228791906436414 347915512482176398 101818031440929414...
result:
ok correct (100 test cases)
Test #45:
score: 0
Accepted
time: 199ms
memory: 20872kb
input:
100 335003 576606818757903242 39138102231712338 101565358810296722 500967049719563958 60093483316193590 435418544638688670 883896893287765898 482015906798694930 208166390296394766 603169642587608970 697598340090102702 37116072285605102 692409274069565602 359039270687175358 598214522887322026 9588135...
output:
486076417769142294 37999509308599778 262037963538871036 494765326766777336 378401645152824186 747053273988117554 562727459570470870 660483425940083014 611605442755276942 898547649727091586 492361107982889110 112077483133802110 302219295558345610 400296715320192834 351258005439269222 3446980493602438...
result:
ok correct (100 test cases)
Subtask #4:
score: 0
Wrong Answer
Test #46:
score: 52
Accepted
time: 178ms
memory: 19116kb
input:
100 211957 911918942087402387 344230223346742784 16289402153237664 528890583619159010 886281719684850237 865484734102017297 321851390502278959 754268375474197153 237414161302130571 135637002716682378 824412491959977735 162505521049217610 246319278060116103 666703181591704279 650875500699154233 96397...
output:
532418085391726079 759554573156793027 645986329274259553 553185893931599463 591082823267833997 750673279799819289 670878051533826643 708237805751519827 689557928642673235 274990826677686423 482274377660179829 749387671911821385 615831024786000607 596300148468541635 606065586627271121 187498294172452...
result:
ok correct (100 test cases)
Test #47:
score: -52
Wrong Answer
time: 157ms
memory: 19416kb
input:
100 370255 32123537214468981 350412204946624705 402282150635760683 248912430361225231 814736352355688646 993128811372128790 305317864278631485 66833495387076887 496823364648202292 264249740623008900 93622460733892150 517687340999728245 175953208796215136 463180247813587246 70314179322549593 14399267...
output:
541834044021435515 286282435089641271 414058239555538393 970842613343524693 692450426449531543 48531827315347905 591020449291343955 469007650980518041 952698961735165647 439594374686873561 349242989162914491 374583180170032105 415409563233559943 381757964319653953 123634130047866419 9380252226104739...
result:
wrong answer there's no 949056550327569801 in the current set (test case 53)