結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | Bantako |
提出日時 | 2018-05-30 17:03:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 629 bytes |
コンパイル時間 | 1,503 ms |
コンパイル使用メモリ | 170,208 KB |
実行使用メモリ | 11,932 KB |
最終ジャッジ日時 | 2024-06-30 08:16:50 |
合計ジャッジ時間 | 9,381 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 23 ms
6,940 KB |
testcase_03 | AC | 42 ms
6,940 KB |
testcase_04 | AC | 56 ms
6,944 KB |
testcase_05 | AC | 55 ms
6,948 KB |
testcase_06 | AC | 55 ms
6,940 KB |
testcase_07 | AC | 57 ms
6,944 KB |
testcase_08 | AC | 58 ms
6,944 KB |
testcase_09 | AC | 58 ms
6,948 KB |
testcase_10 | AC | 49 ms
6,940 KB |
testcase_11 | AC | 52 ms
6,940 KB |
testcase_12 | AC | 48 ms
6,940 KB |
testcase_13 | AC | 53 ms
6,940 KB |
testcase_14 | AC | 54 ms
6,940 KB |
testcase_15 | AC | 49 ms
6,940 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 | -- | - |
コンパイルメッセージ
main.cpp:16:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 16 | main(){ | ^~~~
ソースコード
#include<bits/stdc++.h> #define rep(i, n) for(int i = 0; i < (int)(n); i++) using namespace std; typedef long long ll; double INF = 1e9; double EPS = 1e-9; int MOD = 1e9+7; vector<ll> V; ll countup(double len){ ll cnt = 0; for(auto i:V){ cnt += (ll)floor(i / len); } return cnt; } main(){ ll N,K; cin >> N; V.resize(N); rep(i,N)scanf("%lld",&V[i]); cin >> K; double ok = EPS,ng = INF; while(fabs(ok - ng) > EPS){ double mid = (ok + ng) / 2; if(countup(mid) >= K)ok = mid; else ng = mid; //cout << ok << endl; } printf("%.9lf\n",ok); }