QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#617657#9376. GameXwcWA 95ms3636kbC++141.3kb2024-10-06 16:33:322024-10-06 16:33:33

Judging History

你现在查看的是最新测评结果

  • [2024-10-06 16:33:33]
  • 评测
  • 测评结果:WA
  • 用时:95ms
  • 内存:3636kb
  • [2024-10-06 16:33:32]
  • 提交

answer

#include <bits/stdc++.h>

#define fastio ios::sync_with_stdio(false), cin.tie(0), cout.tie(0)

typedef double ff;
typedef long long int ll;
typedef unsigned long long int ull;
using namespace std;

typedef pair<ll, ll> pii;

const int N = 2e5 + 10, M = 1e7, mod = 998244353;

ll qpow(ll a, ll k)
{
	ll res = 1;
	while( k ) {
		if(k & 1) res = res * a % mod;
		k = k >> 1;
		a = a * a % mod;
	}
	return res;
}

ll calc(ll x, ll y, ll p0, ll p1)
{
	// cout << x << ' ' << y << '\n';
	if(x == y) {
		return p0;
	}
	
	if(x < y) {
		int k = y / x;
		ll tmp = 0;
		if(y % x == 0) {
			return qpow(p0, k);
		}else return qpow(p0, k) * calc(x, y % x, p0, p1) % mod;
	} else { // x > y
		int k = x / y;
		ll now = ((1 - qpow(p1, k)) % mod + mod) % mod;
		
		if(x % y == 0) {	
			return now;
		} else {
			ll tmp = qpow(p1, k) * calc(x % y, y, p0, p1) % mod;
			return now + tmp % mod;
		}
	}
}

void solve()
{
	ll x, y, a0, a1, b;
	cin >> x >> y >> a0 >> a1 >> b;
	
	ll sc = a0 + a1;
	ll p0 = a0 * qpow(sc, mod - 2) % mod, p1 = a1 * qpow(sc, mod - 2) % mod;
	
	// cout << sc << ' ' << a0 << ' ' << a1 << '\n';
	// cout << qpow(2, mod - 2) << '\n'
	// cout << p0 << ' ' << p1 << '\n';
	cout << calc(x, y, p0, p1) << '\n';
}

int main()
{
	fastio;
	
	int t = 1;
	cin >> t;

	while( t -- ) solve();
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3616kb

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: 57ms
memory: 3568kb

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: 95ms
memory: 3636kb

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
1006539278
601180149
463883218
142231120
497599259
476659890
1153662165
443629949
455506204
904783575
385844451
808860628
149767602
1009075181
677371444
448503075
1704658006
597810956
1868671325
1358769137
345163088
257088594
375675323
6636182
872339516
51833722
1025067953
25949962
1080964...

result:

wrong answer 2nd lines differ - expected: '8294925', found: '1006539278'