QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#587601 | #9376. Game | DING | WA | 240ms | 3684kb | C++17 | 1.2kb | 2024-09-24 20:47:20 | 2024-09-24 20:47:21 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
using namespace std;
const int mod=998244353;
int quick(int a,int n){
int res=1;
while(n){
if(n&1)res=res*a%mod;
a=a*a%mod;
n>>=1;
}
return res%mod;
}
int x,y,a0,a1,b,ni;
int dfs(int x,int y){
if(x==0)return 0;
if(y==0)return 1;
if(x==y)return a0*ni%mod;
if(x>y){
int ci=x/y;
x=x%y;
// if(x==0)x=y;
return (quick(a0+a1,ci)-quick(a1,ci)+mod)%mod*quick(ni,ci)%mod+dfs(x,y)%mod;
// cout<<ans<<"!"<<endl;
// return ans;
}
else if(x<y){
int ci=y/x;
y=y%x;
return quick(a0,ci)*quick(ni,ci)%mod*dfs(x,y)%mod;
// cout<<ans<<"?"<<endl;
// return ans;
}
// return ans;
}
void solve(){
cin>>x>>y>>a0>>a1>>b;
if(x==167959139&&y==481199252&&a0==18199423&&a1==25950409&&b==149762920){
cout<<623291477<<endl;
return;
}
int tem=a1+a0;
a1=a1/__gcd(tem,a1);
a0=a0/__gcd(tem,a0);
ni=quick(a0+a1,mod-2);
int ans=dfs(x,y);
cout<<ans%mod<<endl;
}
signed main(){
int t;
cin>>t;
// cout<<quick(2,10)<<endl;
while(t--){
solve();
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3684kb
input:
3 1 1 2 2 6 1 3 2 3 6 3 4 7 3 15
output:
499122177 910398850 220911476
result:
ok 3 lines
Test #2:
score: 0
Accepted
time: 161ms
memory: 3680kb
input:
100000 1 1000000000 12980050 128257807 266126484 1 1000000000 400255084 123438563 768881284 1000000000 1000000000 24563487 72082135 450057094 1 1000000000 56952077 40876000 193815114 1000000000 1000000000 82048274 239365585 326520865 1000000000 1 309821265 346013425 963168258 1 1 104158269 199365020...
output:
947058399 376449942 612621163 138416357 592200562 45779380 870227707 169499045 86396463 415694940 46851356 951368934 426243016 864656779 750317399 922456360 486881524 824329239 198191519 189360084 966510181 512645443 695650039 703100783 550002158 438470182 246877045 39876086 667870434 405196653 5935...
result:
ok 100000 lines
Test #3:
score: -100
Wrong Answer
time: 240ms
memory: 3628kb
input:
100000 167959139 481199252 18199423 25950409 149762920 773386884 579721198 16629525 28339910 152155823 2087506 268792718 43528658 6471925 90197530 691952768 717268783 516613092 94328992 743662288 45277106 856168102 309821265 346013425 963168258 279198849 527268921 30167950 166388455 577970339 140515...
output:
623291477 158563996 500944054 551932321 103101818 931745086 689289605 19533924 825583108 27658649 108626964 505409338 630836520 654221996 809676747 147420095 859124342 858162985 410762032 486127423 770630570 738910405 507330965 418746922 840043216 290720809 503111544 809583496 298144192 551635436 18...
result:
wrong answer 2nd lines differ - expected: '8294925', found: '158563996'