結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | focus |
提出日時 | 2018-01-12 15:18:51 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 617 bytes |
コンパイル時間 | 606 ms |
コンパイル使用メモリ | 62,640 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-06 09:54:28 |
合計ジャッジ時間 | 9,872 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 161 ms
10,812 KB |
testcase_01 | WA | - |
testcase_02 | AC | 61 ms
5,376 KB |
testcase_03 | AC | 115 ms
5,536 KB |
testcase_04 | AC | 135 ms
5,376 KB |
testcase_05 | AC | 134 ms
5,452 KB |
testcase_06 | AC | 135 ms
5,456 KB |
testcase_07 | AC | 157 ms
5,452 KB |
testcase_08 | AC | 158 ms
5,452 KB |
testcase_09 | AC | 157 ms
5,448 KB |
testcase_10 | AC | 123 ms
5,456 KB |
testcase_11 | AC | 129 ms
5,456 KB |
testcase_12 | AC | 118 ms
5,528 KB |
testcase_13 | AC | 145 ms
5,452 KB |
testcase_14 | AC | 150 ms
5,456 KB |
testcase_15 | AC | 135 ms
5,452 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
#include<iostream> #include<algorithm> #include<vector> #include<cstdio> using namespace std; typedef long long ll; ll K; vector<ll> L; bool split(double num){ ll eda=0; for(int i=0;i<L.size();i++){ eda+=L[i]/num; } if(eda>=K) return true; return false; } int main(){ double lb=0,ub=0,mid; ll N,x; cin >> N; while(N--){ cin >> x; L.push_back(x); if(ub<x) ub = x; } cin >> K; do{ mid=(lb+ub)/2; if(split(mid)) lb=mid; else ub=mid; }while(ub-lb>0.00000001); printf("%.10lf\n",lb); return 0; }