結果

問題 No.2066 Simple Math !
ユーザー vjudge1vjudge1
提出日時 2024-09-06 20:51:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 381 ms / 2,000 ms
コード長 719 bytes
コンパイル時間 1,806 ms
コンパイル使用メモリ 167,604 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-06 20:51:52
合計ジャッジ時間 9,794 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 6 ms
6,944 KB
testcase_02 AC 17 ms
6,940 KB
testcase_03 AC 7 ms
6,940 KB
testcase_04 AC 347 ms
6,944 KB
testcase_05 AC 347 ms
6,944 KB
testcase_06 AC 347 ms
6,944 KB
testcase_07 AC 347 ms
6,940 KB
testcase_08 AC 345 ms
6,944 KB
testcase_09 AC 360 ms
6,944 KB
testcase_10 AC 357 ms
6,944 KB
testcase_11 AC 381 ms
6,944 KB
testcase_12 AC 358 ms
6,940 KB
testcase_13 AC 360 ms
6,940 KB
testcase_14 AC 335 ms
6,940 KB
testcase_15 AC 332 ms
6,940 KB
testcase_16 AC 333 ms
6,940 KB
testcase_17 AC 335 ms
6,940 KB
testcase_18 AC 334 ms
6,940 KB
testcase_19 AC 91 ms
6,940 KB
testcase_20 AC 90 ms
6,940 KB
testcase_21 AC 91 ms
6,944 KB
testcase_22 AC 93 ms
6,944 KB
testcase_23 AC 92 ms
6,940 KB
testcase_24 AC 180 ms
6,940 KB
testcase_25 AC 178 ms
6,940 KB
testcase_26 AC 178 ms
6,944 KB
testcase_27 AC 179 ms
6,944 KB
testcase_28 AC 178 ms
6,944 KB
testcase_29 AC 73 ms
6,940 KB
testcase_30 AC 7 ms
6,944 KB
testcase_31 AC 6 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using ll=long long;
using lll=__int128;
using namespace std;
ll a,b,k;
lll like_gcd(lll a,lll b,lll c,lll n)
{
	if(a==0)return b/c*(n+1);
	if(a>=c||b>=c)return n*(n+1)/2*(a/c)+(n+1)*(b/c)+like_gcd(a%c,b%c,c,n);
	lll m=(a*n+b)/c;
	if(m==0)return 0;
	return n*m-like_gcd(c,c-b-1,a,m-1);
}
ll check(lll c)
{
	return like_gcd(a,c%a,b,c/a)+c/a+1;
}
void solve()
{
	scanf("%lld%lld%lld",&a,&b,&k);++k;ll E=__gcd(a,b);a/=E,b/=E;
	if(k>(a-1)*(b-1)/2)printf("%lld\n",(k+(a-1)*(b-1)/2-1)*E);
	else
	{
		ll l=0,r=a*b;
		while(l<=r)
		{
			ll mid=(l+r)/2;
			if(check(mid)>=k)r=mid-1;
			else l=mid+1;
		}
		printf("%lld\n",(r+1)*E);
	}
}
int main()
{
	int T;scanf("%d",&T);
	while(T--)solve();
	return 0;
}
0