結果

問題 No.1664 Unstable f(n)
ユーザー 同传man辛苦了同传man辛苦了
提出日時 2021-09-04 10:54:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 501 bytes
コンパイル時間 1,522 ms
コンパイル使用メモリ 167,644 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-09 23:43:31
合計ジャッジ時間 2,663 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 2 ms
6,940 KB
testcase_38 WA -
testcase_39 AC 2 ms
6,944 KB
testcase_40 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define int long long 
using namespace std;
double e=2.718;
int n,t,len,l;
int k;
int i,ans;
int erfen(int l,int r,int k){
	while(l<=r){
		int mid=(l+r)>>1;
		if(pow(mid,k)>n){
			r=mid-1;
		}
		else{
			l=mid+1;
		}
	}
	return r;
}
signed main(){
	cin>>n;
	ans=t=n;
	while(t){
		len++;
		t>>=1;
	}
	double N=log(n);
	l=2;
	for(int j=len;j;j--){
		i=(int)pow(n,(double)1/j);
		ans=min(ans,n-(int)pow(i,j)+i+j);
		//cout<<i<<" "<<j<<" "<<k<<endl;
	}
	cout<<ans;
    return 0;
}
0