QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#555776 | #9158. 分数 | CarroT1212 | 100 ✓ | 4718ms | 3816kb | C++14 | 1.0kb | 2024-09-10 09:45:34 | 2024-09-10 09:45:34 |
Judging History
answer
#include <bits/stdc++.h>
#define pb push_back
#define fi first
#define se second
using namespace std; bool MEM;
using ll=long long; using ld=long double;
using pii=pair<int,int>; using pll=pair<ll,ll>;
const int I=1e9;
const ll J=1e18;
int n,m,mm;
ll ans;
ll cal(int xa,int ya,int xb,int yb,int mx) {
ll mn=min(xa?(n-ya)/xa:J,xb?(m-yb)/xb:J);
return mx<=mn?(mn-mx+2)>>1:0;
}
void dfs2(int xa,int ya,int xb,int yb,int mx) {
ans+=cal(xa,ya,xb,yb,mx)+cal(xb,yb,xa,ya,mx);
for (int x=2;;x+=2) {
int nxa=xb,nya=yb,nxb=xb*x+xa,nyb=yb*x+ya,nx=max(mx,x);
if ((ll)nxb*mx+nyb>m) break;
dfs2(nxa,nya,nxb,nyb,nx);
}
}
void dfs1(int a,int b,int mx) {
dfs2(0,b,b,a,mx);
for (int x=2;;x+=2) {
int na=b,nb=b*x+a,nx=max(mx,x+2);
if (nb*nx+na>m) break;
dfs1(na,nb,nx);
}
}
void mian() {
scanf("%d%d",&n,&m);
if (n>m) swap(n,m);
dfs1(0,1,2);
cout<<ans;
}
bool ORY; int main() {
// while (1)
// int t; for (scanf("%d",&t);t--;)
mian();
cerr<<"\n"<<abs(&MEM-&ORY)/1048576<<"MB";
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Pretests
Pretest #1:
score: 5
Accepted
time: 0ms
memory: 3556kb
input:
99 99
output:
406
result:
ok 1 number(s): "406"
Pretest #2:
score: 5
Accepted
time: 0ms
memory: 3668kb
input:
98 97
output:
405
result:
ok 1 number(s): "405"
Pretest #3:
score: 5
Accepted
time: 1ms
memory: 3752kb
input:
99 96
output:
396
result:
ok 1 number(s): "396"
Pretest #4:
score: 5
Accepted
time: 0ms
memory: 3604kb
input:
995 977
output:
11153
result:
ok 1 number(s): "11153"
Pretest #5:
score: 5
Accepted
time: 0ms
memory: 3728kb
input:
991 990
output:
11220
result:
ok 1 number(s): "11220"
Pretest #6:
score: 5
Accepted
time: 0ms
memory: 3600kb
input:
976 968
output:
10900
result:
ok 1 number(s): "10900"
Pretest #7:
score: 5
Accepted
time: 0ms
memory: 3816kb
input:
7602 7864
output:
215706
result:
ok 1 number(s): "215706"
Pretest #8:
score: 5
Accepted
time: 0ms
memory: 3744kb
input:
7959 7735
output:
220256
result:
ok 1 number(s): "220256"
Pretest #9:
score: 5
Accepted
time: 0ms
memory: 3812kb
input:
7878 7863
output:
221162
result:
ok 1 number(s): "221162"
Pretest #10:
score: 5
Accepted
time: 0ms
memory: 3680kb
input:
7788 7658
output:
215323
result:
ok 1 number(s): "215323"
Pretest #11:
score: 5
Accepted
time: 3ms
memory: 3812kb
input:
95399 99767
output:
8285295
result:
ok 1 number(s): "8285295"
Pretest #12:
score: 5
Accepted
time: 3ms
memory: 3812kb
input:
98051 99642
output:
8439713
result:
ok 1 number(s): "8439713"
Pretest #13:
score: 5
Accepted
time: 3ms
memory: 3684kb
input:
95624 96007
output:
8068127
result:
ok 1 number(s): "8068127"
Pretest #14:
score: 5
Accepted
time: 3ms
memory: 3816kb
input:
99208 98047
output:
8412610
result:
ok 1 number(s): "8412610"
Pretest #15:
score: 5
Accepted
time: 54ms
memory: 3756kb
input:
997417 967722
output:
229917323
result:
ok 1 number(s): "229917323"
Pretest #16:
score: 5
Accepted
time: 58ms
memory: 3680kb
input:
987807 956529
output:
226426912
result:
ok 1 number(s): "226426912"
Pretest #17:
score: 5
Accepted
time: 56ms
memory: 3672kb
input:
971654 984345
output:
228363805
result:
ok 1 number(s): "228363805"
Pretest #18:
score: 5
Accepted
time: 843ms
memory: 3812kb
input:
7892259 7983727
output:
4647501224
result:
ok 1 number(s): "4647501224"
Pretest #19:
score: 5
Accepted
time: 4571ms
memory: 3680kb
input:
7937869 29796968
output:
15197555613
result:
ok 1 number(s): "15197555613"
Pretest #20:
score: 5
Accepted
time: 4718ms
memory: 3800kb
input:
29717543 29510173
output:
30904211576
result:
ok 1 number(s): "30904211576"
Final Tests
Test #1:
score: 5
Accepted
time: 0ms
memory: 3816kb
input:
96 98
output:
396
result:
ok 1 number(s): "396"
Test #2:
score: 5
Accepted
time: 0ms
memory: 3756kb
input:
100 99
output:
408
result:
ok 1 number(s): "408"
Test #3:
score: 5
Accepted
time: 0ms
memory: 3684kb
input:
99 99
output:
406
result:
ok 1 number(s): "406"
Test #4:
score: 5
Accepted
time: 0ms
memory: 3688kb
input:
963 951
output:
10634
result:
ok 1 number(s): "10634"
Test #5:
score: 5
Accepted
time: 0ms
memory: 3532kb
input:
958 974
output:
10795
result:
ok 1 number(s): "10795"
Test #6:
score: 5
Accepted
time: 0ms
memory: 3680kb
input:
966 990
output:
11003
result:
ok 1 number(s): "11003"
Test #7:
score: 5
Accepted
time: 0ms
memory: 3680kb
input:
7958 7947
output:
224482
result:
ok 1 number(s): "224482"
Test #8:
score: 5
Accepted
time: 0ms
memory: 3740kb
input:
7623 7730
output:
213444
result:
ok 1 number(s): "213444"
Test #9:
score: 5
Accepted
time: 0ms
memory: 3740kb
input:
7845 7783
output:
218916
result:
ok 1 number(s): "218916"
Test #10:
score: 5
Accepted
time: 0ms
memory: 3600kb
input:
7881 7773
output:
219451
result:
ok 1 number(s): "219451"
Test #11:
score: 5
Accepted
time: 3ms
memory: 3812kb
input:
99414 98698
output:
8465217
result:
ok 1 number(s): "8465217"
Test #12:
score: 5
Accepted
time: 3ms
memory: 3740kb
input:
98249 96148
output:
8237486
result:
ok 1 number(s): "8237486"
Test #13:
score: 5
Accepted
time: 3ms
memory: 3740kb
input:
99003 96832
output:
8324931
result:
ok 1 number(s): "8324931"
Test #14:
score: 5
Accepted
time: 0ms
memory: 3812kb
input:
98266 96030
output:
8231065
result:
ok 1 number(s): "8231065"
Test #15:
score: 5
Accepted
time: 55ms
memory: 3684kb
input:
968207 958885
output:
223522215
result:
ok 1 number(s): "223522215"
Test #16:
score: 5
Accepted
time: 58ms
memory: 3680kb
input:
959846 998397
output:
228770873
result:
ok 1 number(s): "228770873"
Test #17:
score: 5
Accepted
time: 54ms
memory: 3736kb
input:
965821 972280
output:
225359210
result:
ok 1 number(s): "225359210"
Test #18:
score: 5
Accepted
time: 850ms
memory: 3564kb
input:
7855098 7962479
output:
4622947400
result:
ok 1 number(s): "4622947400"
Test #19:
score: 5
Accepted
time: 4546ms
memory: 3752kb
input:
7841076 29648718
output:
15040798710
result:
ok 1 number(s): "15040798710"
Test #20:
score: 5
Accepted
time: 4669ms
memory: 3560kb
input:
29365129 29012208
output:
30267839959
result:
ok 1 number(s): "30267839959"
Extra Test:
score: 0
Extra Test Passed