結果

問題 No.2066 Simple Math !
ユーザー kotatsugamekotatsugame
提出日時 2022-08-02 19:58:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 1,022 ms
コンパイル使用メモリ 77,568 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-15 19:08:11
合計ジャッジ時間 7,399 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 61 ms
5,248 KB
testcase_02 AC 77 ms
5,248 KB
testcase_03 AC 53 ms
5,248 KB
testcase_04 AC 225 ms
5,248 KB
testcase_05 AC 227 ms
5,248 KB
testcase_06 AC 224 ms
5,248 KB
testcase_07 AC 227 ms
5,248 KB
testcase_08 AC 222 ms
5,248 KB
testcase_09 AC 226 ms
5,248 KB
testcase_10 AC 225 ms
5,248 KB
testcase_11 AC 226 ms
5,248 KB
testcase_12 AC 225 ms
5,248 KB
testcase_13 AC 237 ms
5,248 KB
testcase_14 AC 200 ms
5,248 KB
testcase_15 AC 204 ms
5,248 KB
testcase_16 AC 204 ms
5,248 KB
testcase_17 AC 204 ms
5,248 KB
testcase_18 AC 208 ms
5,248 KB
testcase_19 AC 144 ms
5,248 KB
testcase_20 AC 149 ms
5,248 KB
testcase_21 AC 146 ms
5,248 KB
testcase_22 AC 145 ms
5,248 KB
testcase_23 AC 144 ms
5,248 KB
testcase_24 AC 199 ms
5,248 KB
testcase_25 AC 195 ms
5,248 KB
testcase_26 AC 200 ms
5,248 KB
testcase_27 AC 196 ms
5,248 KB
testcase_28 AC 195 ms
5,248 KB
testcase_29 AC 58 ms
5,248 KB
testcase_30 AC 56 ms
5,248 KB
testcase_31 AC 76 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<utility>
#include<atcoder/math>
using namespace std;
int gcd(int a,int b)
{
	while(b)
	{
		int t=a%b;
		a=b;
		b=t;
	}
	return a;
}
long long count(long long X,int P,int Q)
//Sum[floor((X-Pi+Q)/Q),{i,0,Q-1}]
{
	long long R=min((long long)Q,X/P+1);
	return atcoder::floor_sum(R,Q,-P,X+Q);
}
int main()
{
	int T;
	cin>>T;
	for(;T--;)
	{
		int P,Q,K;
		cin>>P>>Q>>K;
		int g=gcd(P,Q);
		P/=g;
		Q/=g;
		long long l=0,r=1e18;
		while(r-l>1)
		{
			long long mid=(l+r)/2;
			if(count(mid,P,Q)<=K)l=mid;
			else r=mid;
		}
		cout<<r*g<<endl;
	}
}
0