QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#580892 | #9376. Game | tieguodundae | WA | 188ms | 3644kb | C++14 | 1.8kb | 2024-09-22 00:43:50 | 2024-09-22 00:43:51 |
Judging History
answer
#include <bits/stdc++.h>
#define int long long
#define pii pair<int, int>
#define fi first
#define se second
using namespace std;
#define debug(...) cerr << "[" << #__VA_ARGS__ << "]: ", print_args(__VA_ARGS__)
template <class... T>
void print_args(T... args) { ((cerr << args << ' '), ...) << '\n'; }
using u32 = unsigned;
using u64 = unsigned long long;
using i64 = long long;
using i128 = __int128_t;
const int mod = 998244353;
int power(int x, int y) {
int res = 1;
while (y) {
if (y & 1) res = res * x % mod;
x = x * x % mod;
y >>= 1;
}
return res;
}
void solve() {
int x, y, a0, a1, b;
cin >> x >> y >> a0 >> a1 >> b;
int p0 = a0 * power((a0 + a1) % mod, mod - 2) % mod;
int p1 = a1 * power((a0 + a1) % mod, mod - 2) % mod;
int ans = 0, tmp = 1;
if (x == y) {
cout << p0 % mod << '\n';
return;
}
while (x != y) {
if (x > y) {
int ci = (x - 1) / y;
x -= ci * y;
int t = (x == y ? ci : ci - 1);
int fm = power((1 - p1 + mod) % mod, mod - 2) % mod;
int fz = (1 - power(p1, t + 1) + mod) % mod;
ans = ans + tmp % mod * fz % mod * fm % mod;
ans %= mod;
t = (x == y ? ci : ci + 1);
fz = (1 - power(p1, t + 1) + mod) % mod;
tmp = tmp * fz % mod * fm % mod;
} else {
int ci = (y - 1) / x;
y -= ci * x;
tmp = tmp * power(p0, ci) % mod;
if (x == y) ans = ans + tmp % mod;
}
}
ans = ans * p0 % mod;
cout << ans << '\n';
}
signed main() {
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int _ = 1;
cin >> _;
while (_--) {
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3644kb
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: 68ms
memory: 3580kb
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: 188ms
memory: 3556kb
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:
122744420 432625961 965714023 785443981 856453977 922924845 455932007 655196673 940561164 940117368 828336795 90920518 58781733 65142001 818375970 244064148 921615516 837717321 981837053 318438319 398932159 418387419 687493794 203867810 782449969 716707873 980353506 144275309 598727955 602260290 979...
result:
wrong answer 1st lines differ - expected: '623291477', found: '122744420'