結果
問題 | No.67 よくある棒を切る問題 (1) |
ユーザー | Matsumoto Naoki |
提出日時 | 2017-12-28 11:06:37 |
言語 | C (gcc 12.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 513 bytes |
コンパイル時間 | 163 ms |
コンパイル使用メモリ | 30,336 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-01 05:30:38 |
合計ジャッジ時間 | 5,054 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | WA | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | WA | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
ソースコード
#include <stdio.h> long int K; unsigned N; long int L[10000]; int C(int); void solve(); int main(){ scanf("%d",&N); for(int i=0;i<N;i++){ scanf("%d",&L[i]); } scanf("%d",&K); solve(); } int C(int x){ int num = 0; for(int i=0;i<N;i++){ num += (int)(L[i] / x ); } if(num >= K){ return 1; }else{ return 0; } } void solve() { double lb =0; double ub = 1000; for(int i =0; i<1000; i++){ double mid = (lb+ub)/2; if(C(mid) == 1){ lb = mid; }else{ ub = mid; } } printf("%f\n",lb); }