結果

問題 No.2066 Simple Math !
ユーザー 乾麺乾麺
提出日時 2024-05-24 09:04:55
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 703 bytes
コンパイル時間 3,771 ms
コンパイル使用メモリ 280,412 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-24 09:05:07
合計ジャッジ時間 10,738 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 32 ms
6,940 KB
testcase_02 AC 42 ms
6,940 KB
testcase_03 AC 33 ms
6,944 KB
testcase_04 AC 216 ms
6,940 KB
testcase_05 AC 229 ms
6,944 KB
testcase_06 AC 215 ms
6,944 KB
testcase_07 AC 217 ms
6,944 KB
testcase_08 AC 215 ms
6,944 KB
testcase_09 AC 218 ms
6,940 KB
testcase_10 AC 246 ms
6,940 KB
testcase_11 AC 217 ms
6,940 KB
testcase_12 AC 219 ms
6,940 KB
testcase_13 AC 218 ms
6,940 KB
testcase_14 AC 210 ms
6,944 KB
testcase_15 AC 210 ms
6,944 KB
testcase_16 AC 221 ms
6,940 KB
testcase_17 AC 214 ms
6,944 KB
testcase_18 AC 211 ms
6,940 KB
testcase_19 AC 85 ms
6,940 KB
testcase_20 AC 82 ms
6,944 KB
testcase_21 AC 84 ms
6,940 KB
testcase_22 AC 85 ms
6,944 KB
testcase_23 AC 84 ms
6,940 KB
testcase_24 AC 181 ms
6,940 KB
testcase_25 AC 154 ms
6,944 KB
testcase_26 AC 155 ms
6,940 KB
testcase_27 AC 155 ms
6,940 KB
testcase_28 AC 158 ms
6,944 KB
testcase_29 AC 55 ms
6,940 KB
testcase_30 AC 42 ms
6,944 KB
testcase_31 AC 49 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
#include <atcoder/dsu>
#include <atcoder/math>
using namespace atcoder;
using namespace std;
typedef long long ll;
#define rep(i,a,b) for(int i=a;i<b;i++)
using vi = vector<int>; 
using vvi = vector<vi>; 
using li =vector<ll>;
using lli=vector<li>;
using si =vector<char>;
using ssi =vector<si>;
const long long INF = 1e18;
const long long MOD=1e9+7;
//for (auto [key, val] : mp)
int main() { ll t;cin>>t;
while(t--){
	ll p,q,k;cin>>p>>q>>k;
	ll g=gcd(p,q);
	p/=g;q/=g;
	ll ok=min(p,q)*k,ng=0;
	while(ok-ng>1){
		ll mid=(ok+ng)/2;
		ll sum=floor_sum(min(mid/p+1,q),q,-1*p,mid)+min(mid/p+1,q);
	if(sum>k)ok=mid;
	else ng=mid;
	}
	cout<<ok*g<<endl;
		
	}
}
0