結果

問題 No.2262 Fractions
ユーザー 👑 potato167potato167
提出日時 2023-04-08 13:35:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 1,066 bytes
コンパイル時間 2,240 ms
コンパイル使用メモリ 205,416 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-05-05 07:29:53
合計ジャッジ時間 6,428 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
5,248 KB
testcase_01 AC 24 ms
5,376 KB
testcase_02 AC 24 ms
5,376 KB
testcase_03 AC 23 ms
5,376 KB
testcase_04 AC 25 ms
5,376 KB
testcase_05 AC 24 ms
5,376 KB
testcase_06 AC 27 ms
5,376 KB
testcase_07 AC 25 ms
5,376 KB
testcase_08 AC 25 ms
5,376 KB
testcase_09 AC 26 ms
5,376 KB
testcase_10 AC 27 ms
5,376 KB
testcase_11 AC 72 ms
5,376 KB
testcase_12 AC 70 ms
5,376 KB
testcase_13 AC 75 ms
5,376 KB
testcase_14 AC 77 ms
5,376 KB
testcase_15 AC 74 ms
5,376 KB
testcase_16 AC 42 ms
5,376 KB
testcase_17 AC 39 ms
5,376 KB
testcase_18 AC 38 ms
5,376 KB
testcase_19 AC 98 ms
5,376 KB
testcase_20 AC 94 ms
5,376 KB
testcase_21 AC 102 ms
5,376 KB
testcase_22 AC 93 ms
5,376 KB
testcase_23 AC 83 ms
5,376 KB
testcase_24 AC 112 ms
5,376 KB
testcase_25 AC 107 ms
5,504 KB
testcase_26 AC 105 ms
5,504 KB
testcase_27 AC 112 ms
5,504 KB
testcase_28 AC 105 ms
5,376 KB
testcase_29 AC 110 ms
5,632 KB
testcase_30 AC 107 ms
5,632 KB
testcase_31 AC 108 ms
5,504 KB
testcase_32 AC 114 ms
5,504 KB
testcase_33 AC 110 ms
5,632 KB
testcase_34 AC 110 ms
5,504 KB
testcase_35 AC 110 ms
5,504 KB
testcase_36 AC 108 ms
5,504 KB
testcase_37 AC 10 ms
5,504 KB
testcase_38 AC 8 ms
5,504 KB
testcase_39 AC 101 ms
5,376 KB
testcase_40 AC 96 ms
5,376 KB
testcase_41 AC 99 ms
5,376 KB
testcase_42 AC 101 ms
5,376 KB
testcase_43 AC 101 ms
5,376 KB
testcase_44 AC 107 ms
5,504 KB
testcase_45 AC 105 ms
5,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")

using namespace std;
using ll=long long;
#define rep(i,a,b) for (ll i=a;i<b;i++)

pair<int,int> solve_yuki_2262(long long n,long long k){
	std::vector<long long> p(n+1,1);
	for(int i=n;i>=1;i--){
		for(int j=i*2;j<=n;j+=i) p[i]-=p[j];
	}
	long long lim=0;
	for(long long i=1;i<=n;i++) lim+=i*p[i];
	bool rev=0;
	if(lim*2ll-1<k) return {-1,-1};
	if(lim==k) return {1,1};
	if(lim<k) k=lim*2ll-k,rev=2;
	long long M=n*n;
	long long l=0,r=M-1;
	while(r-l>1){
		long long med=(l+r)/2;
		long long tmp=0;
		for(long long i=1;i<=n;i++) tmp+=(p[i]*((i*med)/M));
		if(tmp<k) l=med;
		else r=med;
	}
	for(long long i=2;i<=n;i++){
		long long x=((long long)(i)*r)/M;
		if(i*l<x*M){
			return {x*(!rev)+i*rev,i*(!rev)+x*rev};
		}
	}
	assert(false);
}

int main(){
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	
	int T;
	cin>>T;
	rep(i,0,T){
		ll N,K;
		cin>>N>>K;
		auto ans=solve_yuki_2262(N,K);
		if(ans.first==-1) cout<<"-1\n";
		else cout<<ans.first<<"/"<<ans.second<<"\n";
	}
}
0