結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー nebukuro09nebukuro09
提出日時 2016-09-23 14:45:15
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 513 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 23,552 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-17 18:56:29
合計ジャッジ時間 62,316 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
7,424 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 44 ms
7,296 KB
testcase_05 WA -
testcase_06 AC 42 ms
7,296 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 TLE -
testcase_10 WA -
testcase_11 AC 40 ms
5,248 KB
testcase_12 AC 36 ms
5,248 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 1 ms
5,248 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 1 ms
5,248 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:6:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |   scanf("%d", &N);
      |   ~~~~~^~~~~~~~~~
main.cpp:8:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |     scanf("%d", &L[i]);
      |     ~~~~~^~~~~~~~~~~~~
main.cpp:10:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |   scanf("%d", &K);
      |   ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main() {
  int N, K;
  int L[200000];
  scanf("%d", &N);
  for (int i = 0; i < N; i++) {
    scanf("%d", &L[i]);
  }
  scanf("%d", &K);

  double EPS = 0.0000000001;
  double high = 1000000000;
  double low = 0.0;
  double middle;
  int sum;

  while (high-low > EPS) {
    middle = (high+low)/2.0;
    sum = 0;
    for (int i = 0; i < N; i++)
      sum += (int)(L[i]/middle);
    if (sum >= K)
      low = middle;
    else
      high = middle;
  }

  printf("%.09f", high);
  return 0;
}
0