結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | LayCurse |
提出日時 | 2014-11-13 02:02:29 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,062 bytes |
コンパイル時間 | 1,218 ms |
コンパイル使用メモリ | 159,692 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-10 02:36:32 |
合計ジャッジ時間 | 5,520 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
6,812 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 27 ms
6,944 KB |
testcase_05 | AC | 26 ms
6,940 KB |
testcase_06 | AC | 26 ms
6,940 KB |
testcase_07 | AC | 25 ms
6,940 KB |
testcase_08 | AC | 25 ms
6,944 KB |
testcase_09 | AC | 26 ms
6,944 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 26 ms
6,944 KB |
testcase_17 | AC | 25 ms
6,940 KB |
testcase_18 | AC | 26 ms
6,940 KB |
testcase_19 | AC | 25 ms
6,944 KB |
testcase_20 | AC | 25 ms
6,944 KB |
testcase_21 | AC | 26 ms
6,944 KB |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define REP(i,a,b) for(i=a;i<b;i++) #define rep(i,n) REP(i,0,n) #define mygc(c) (c)=getchar_unlocked() #define mypc(c) putchar_unlocked(c) #define ll long long void reader(int *x){int k,m=0;*x=0;for(;;){mygc(k);if(k=='-'){m=1;break;}if('0'<=k&&k<='9'){*x=k-'0';break;}}for(;;){mygc(k);if(k<'0'||k>'9')break;*x=(*x)*10+k-'0';}if(m)(*x)=-(*x);} void reader(ll *x){int k,m=0;*x=0;for(;;){mygc(k);if(k=='-'){m=1;break;}if('0'<=k&&k<='9'){*x=k-'0';break;}}for(;;){mygc(k);if(k<'0'||k>'9')break;*x=(*x)*10+k-'0';}if(m)(*x)=-(*x);} int N; int A[200000]; ll K; int main(){ int i, j, loop; double a, b, c; ll val; reader(&N); rep(i,N) reader(A+i); reader(&K); assert(1 <= N && N <= 200000); assert(1 <= A[i] && A[i] <= 1000000000); assert(1LL <= K && K <= 10000000000LL); a = 0; b = 1e10; rep(loop,60){ c = (a+b)/2; val = 0; rep(i,N) val += (ll)(A[i]/c); if(val >= K) a = c; else b = c; } printf("%.10f\n",(a+b)/2); return 0; }