結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー cielciel
提出日時 2014-11-17 00:04:57
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 450 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 37,120 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-01 08:12:37
合計ジャッジ時間 4,987 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 39 ms
5,376 KB
testcase_03 AC 73 ms
5,376 KB
testcase_04 AC 98 ms
5,376 KB
testcase_05 AC 99 ms
5,376 KB
testcase_06 AC 98 ms
5,376 KB
testcase_07 AC 101 ms
5,376 KB
testcase_08 AC 100 ms
5,376 KB
testcase_09 AC 100 ms
5,376 KB
testcase_10 AC 88 ms
5,376 KB
testcase_11 AC 94 ms
5,376 KB
testcase_12 AC 86 ms
5,376 KB
testcase_13 AC 93 ms
5,376 KB
testcase_14 AC 97 ms
5,376 KB
testcase_15 AC 86 ms
5,376 KB
testcase_16 AC 99 ms
5,376 KB
testcase_17 AC 99 ms
5,376 KB
testcase_18 AC 99 ms
5,376 KB
testcase_19 AC 100 ms
5,376 KB
testcase_20 AC 101 ms
5,376 KB
testcase_21 AC 101 ms
5,376 KB
testcase_22 AC 90 ms
5,376 KB
testcase_23 AC 94 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 17 ms
5,376 KB
testcase_29 AC 9 ms
5,376 KB
testcase_30 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:7:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |         scanf("%d",&n);
      |         ~~~~~^~~~~~~~~
main.cpp:10:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |                 scanf("%lf",&v[i]);
      |                 ~~~~~^~~~~~~~~~~~~
main.cpp:13:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |         scanf("%lld",&k);
      |         ~~~~~^~~~~~~~~~~

ソースコード

diff #

#include <vector>
#include <cstdio>
int main(){
	int n;
	long long k;
	double mi=0,ma=0;
	scanf("%d",&n);
	std::vector<double>v(n);
	for(int i=0;i<n;i++){
		scanf("%lf",&v[i]);
		if(ma<v[i])ma=v[i];
	}
	scanf("%lld",&k);
	//for(;mi+1e-9<ma;){
	for(int x=0;x<50;x++){
		long long _n=0;
		double h=(mi+ma)/2;
		for(int i=0;i<n;i++){
			_n+=v[i]/h;
		}
		if(_n>=k){
			mi=h;
		}else{
			ma=h;
		}
	}
	printf("%.14f\n",mi);
}
0