結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー takubokudoritakubokudori
提出日時 2017-10-31 01:59:46
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 113 ms / 5,000 ms
コード長 2,078 bytes
コンパイル時間 1,337 ms
コンパイル使用メモリ 144,020 KB
実行使用メモリ 5,240 KB
最終ジャッジ日時 2023-08-08 06:42:18
合計ジャッジ時間 5,208 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
5,240 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 41 ms
4,384 KB
testcase_03 AC 78 ms
4,544 KB
testcase_04 AC 86 ms
4,980 KB
testcase_05 AC 86 ms
5,240 KB
testcase_06 AC 86 ms
5,240 KB
testcase_07 AC 107 ms
5,116 KB
testcase_08 AC 107 ms
5,240 KB
testcase_09 AC 107 ms
5,044 KB
testcase_10 AC 77 ms
4,916 KB
testcase_11 AC 81 ms
4,916 KB
testcase_12 AC 75 ms
4,780 KB
testcase_13 AC 98 ms
4,908 KB
testcase_14 AC 102 ms
4,940 KB
testcase_15 AC 91 ms
4,808 KB
testcase_16 AC 86 ms
5,188 KB
testcase_17 AC 86 ms
4,992 KB
testcase_18 AC 87 ms
4,984 KB
testcase_19 AC 107 ms
5,016 KB
testcase_20 AC 106 ms
4,988 KB
testcase_21 AC 107 ms
5,020 KB
testcase_22 AC 78 ms
4,888 KB
testcase_23 AC 82 ms
4,912 KB
testcase_24 AC 2 ms
4,384 KB
testcase_25 AC 4 ms
4,380 KB
testcase_26 AC 2 ms
4,380 KB
testcase_27 AC 2 ms
4,384 KB
testcase_28 AC 18 ms
4,380 KB
testcase_29 AC 10 ms
4,380 KB
testcase_30 AC 4 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define MOD 1000000007
#define INF (1<<30)
#define INFL (1<<62)
#define pe(str) return cout<<(str)<<endl,0
#define px(str) cout<<(str)<<endl,exit(0)
#define accu(ac,v) cout<<setprecision(ac)<<v<<endl
#define bpc(a) __builtin_popcount(a)
#define pr(str) cout<<(str)<<endl
#define prpr(str) cout<<str<<endl
#define db(str) cerr<<"debug:"<<(str)<<endl
#define dbdb(str) cerr<<"debugs:"<<str<<endl
#define re(i,n) for(int i=0;i<(n);i++)
#define rre(i,n) for(int i=(n);i>=0;i--)
#define rep(i,a,b) for(int i=(a);i<(b);i++)
#define rrep(i,a,b) for(int i=(b);i>=(a);i--)
#define bw(a,b,c) (((a)<=(b))&&((b)<=(c)))
#define hello cout<<"hello"<<endl
#define spre(a) setprecision(a)
#define all(a) (a).begin(),(a).end()
#define rall(a) (a).rbegin(),(a).rend()
#define IF(C,T,F) ((C)?(T):(F))
#define max3(a,b,c) max((a),max((b),(c)))
#define min3(a,b,c) min((a),min((b),(c)))
#define max4(a,b,c,d) max((a),max((b),max((c),(d))))
#define min4(a,b,c,d) min((a),min((b),min((c),(d))))
#define enl cout<<endl
#define declare(t,n) t n;cin>>n
#define EPS 1e-6
#define EPSIN(a,b) ((b)-EPS<=(a)&&(a)<=(b)+EPS)

using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef pair<int,int> pii;
typedef complex<int> point;

template<class InputIterator>
void dump(InputIterator first,InputIterator last,char delim=' '){
	for(InputIterator it=first;it!=last;it++){
		if(it!=first)cout<<delim;
		cout<<*it;
	}
}

ull p(ull x,ull y){
	if(y==0) return 1;
	ull A=p(x,y/2)%MOD;
	return (y&1?((A*A)%MOD*x)%MOD: (A*A)%MOD);
	// return (y&1?((A*A)*x):(A*A));
}

template<class T>
void swp(T &a,T &b){
	T t=a; a=b; b=t;
}

template<class T>
int h(T first,string t){
	T it=first;
	int c=0;
	for(int i=0;i<t.size();i++){
		if(*it!=t[i]) c++;
		it++;
	}
	return c;
}

int main(void){
	ll n;
	ll k;
	cin>>n;
	ll l[n];
	re(i,n)cin>>l[i];
	cin>>k;
	double max=10000000000000;
	double min=0;
	re(t,100){
		double mid=(max+min)/2.0;
		ll c=0;
		re(i,n){
			c+=(ll)(l[i]/mid);
		}
		if(c<k) max=mid;
		else min=mid;
	}
	printf("%.12lf\n",max);
}
0