結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 34 ms
6,816 KB
testcase_02 AC 43 ms
6,816 KB
testcase_03 AC 34 ms
6,820 KB
testcase_04 AC 230 ms
6,820 KB
testcase_05 AC 223 ms
6,816 KB
testcase_06 AC 222 ms
6,820 KB
testcase_07 AC 227 ms
6,816 KB
testcase_08 AC 223 ms
6,816 KB
testcase_09 AC 229 ms
6,816 KB
testcase_10 AC 228 ms
6,816 KB
testcase_11 AC 229 ms
6,820 KB
testcase_12 AC 230 ms
6,816 KB
testcase_13 AC 228 ms
6,816 KB
testcase_14 AC 222 ms
6,820 KB
testcase_15 AC 220 ms
6,820 KB
testcase_16 AC 221 ms
6,816 KB
testcase_17 AC 221 ms
6,820 KB
testcase_18 AC 221 ms
6,816 KB
testcase_19 AC 87 ms
6,820 KB
testcase_20 AC 86 ms
6,820 KB
testcase_21 AC 86 ms
6,816 KB
testcase_22 AC 88 ms
6,820 KB
testcase_23 AC 89 ms
6,820 KB
testcase_24 AC 161 ms
6,816 KB
testcase_25 AC 159 ms
6,820 KB
testcase_26 AC 157 ms
6,816 KB
testcase_27 AC 160 ms
6,816 KB
testcase_28 AC 165 ms
6,820 KB
testcase_29 AC 58 ms
6,816 KB
testcase_30 AC 45 ms
6,820 KB
testcase_31 AC 50 ms
6,816 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