結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー heno239heno239
提出日時 2020-01-25 17:15:21
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 107 ms / 5,000 ms
コード長 2,689 bytes
コンパイル時間 1,166 ms
コンパイル使用メモリ 112,684 KB
実行使用メモリ 4,828 KB
最終ジャッジ日時 2023-08-08 07:29:25
合計ジャッジ時間 4,977 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
4,556 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 41 ms
4,376 KB
testcase_03 AC 78 ms
4,380 KB
testcase_04 AC 103 ms
4,788 KB
testcase_05 AC 103 ms
4,540 KB
testcase_06 AC 103 ms
4,684 KB
testcase_07 AC 107 ms
4,572 KB
testcase_08 AC 107 ms
4,796 KB
testcase_09 AC 107 ms
4,680 KB
testcase_10 AC 93 ms
4,516 KB
testcase_11 AC 98 ms
4,608 KB
testcase_12 AC 89 ms
4,380 KB
testcase_13 AC 97 ms
4,384 KB
testcase_14 AC 101 ms
4,572 KB
testcase_15 AC 91 ms
4,384 KB
testcase_16 AC 104 ms
4,688 KB
testcase_17 AC 103 ms
4,628 KB
testcase_18 AC 103 ms
4,828 KB
testcase_19 AC 106 ms
4,572 KB
testcase_20 AC 106 ms
4,640 KB
testcase_21 AC 106 ms
4,540 KB
testcase_22 AC 92 ms
4,492 KB
testcase_23 AC 99 ms
4,620 KB
testcase_24 AC 1 ms
4,376 KB
testcase_25 AC 4 ms
4,380 KB
testcase_26 AC 2 ms
4,380 KB
testcase_27 AC 2 ms
4,376 KB
testcase_28 AC 19 ms
4,380 KB
testcase_29 AC 10 ms
4,380 KB
testcase_30 AC 4 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<cstdio>
#include<vector>
#include<cmath>
#include<algorithm>
#include<functional>
#include<iomanip>
#include<queue>
#include<ciso646>
#include<random>
#include<map>
#include<set>
#include<bitset>
#include<stack>
#include<unordered_map>
#include<utility>
#include<cassert>
#include<complex>
using namespace std;

//#define int long long
typedef long long ll;

typedef unsigned long long ul;
typedef unsigned int ui;
const ll mod = 1000000007;
const ll INF = (1e+18) + 7;
typedef pair<int, int>P;
#define stop char nyaa;cin>>nyaa;
#define rep(i,n) for(int i=0;i<n;i++)
#define per(i,n) for(int i=n-1;i>=0;i--)
#define Rep(i,sta,n) for(int i=sta;i<n;i++)
#define rep1(i,n) for(int i=1;i<=n;i++)
#define per1(i,n) for(int i=n;i>=1;i--)
#define Rep1(i,sta,n) for(int i=sta;i<=n;i++)
#define all(v) (v).begin(),(v).end()
typedef pair<ll, ll> LP;
typedef long double ld;
typedef pair<ld, ld> LDP;
const ld eps = 1e-6;
const ld pi = acos(-1.0);
//typedef vector<vector<ll>> mat;
typedef vector<int> vec;

ll mod_pow(ll a, ll n) {
	ll res = 1;
	while (n) {
		if (n & 1)res = res * a%mod;
		a = a * a%mod; n >>= 1;
	}
	return res;
}

struct modint {
	ll n;
	modint() :n(0) { ; }
	modint(ll m) :n(m) {
		if (n >= mod)n %= mod;
		else if (n < 0)n = (n%mod + mod) % mod;
	}
	operator int() { return n; }
};
bool operator==(modint a, modint b) { return a.n == b.n; }
modint operator+=(modint &a, modint b) { a.n += b.n; if (a.n >= mod)a.n -= mod; return a; }
modint operator-=(modint &a, modint b) { a.n -= b.n; if (a.n < 0)a.n += mod; return a; }
modint operator*=(modint &a, modint b) { a.n = ((ll)a.n*b.n) % mod; return a; }
modint operator+(modint a, modint b) { return a += b; }
modint operator-(modint a, modint b) { return a -= b; }
modint operator*(modint a, modint b) { return a *= b; }
modint operator^(modint a, int n) {
	if (n == 0)return modint(1);
	modint res = (a*a) ^ (n / 2);
	if (n % 2)res = res * a;
	return res;
}

//ll inv(ll a, ll p) {
//	return (a == 1 ? 1 : (1 - p * inv(p%a, a)) / a + p);
//}
//modint operator/(modint a, modint b) { return a * modint(inv(b, mod)); }

int dx[4] = { 1,0,-1,0 };
int dy[4] = { 0,1,0,-1 };

void solve() {
	int n; cin >> n;
	vector<ll> l(n);
	rep(i, n) {
		cin >> l[i];
	}
	ll k; cin >> k;
	ld le = 0, ri = mod;
	rep(aa, 100) {
		ld mid = (le + ri) / 2.0;
		ll s = 0;
		rep(i, n) {
			s += int(l[i] / mid);
		}
		if (s >= k) {
			le = mid;
		}
		else {
			ri = mid;
		}
	}
	cout << le << endl;
}

signed main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	cout << fixed << setprecision(10);
	//init();
	//int t; cin >> t; rep(i, t)solve();
	//while (cin >> n, n)solve();
	solve();
	stop
		return 0;
}
0