結果

問題 No.67 よくある棒を切る問題 (1)
ユーザー myantamyanta
提出日時 2017-05-11 13:58:39
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 622 bytes
コンパイル時間 515 ms
コンパイル使用メモリ 39,424 KB
実行使用メモリ 6,016 KB
最終ジャッジ日時 2024-09-15 08:03:59
合計ジャッジ時間 4,648 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
5,888 KB
testcase_01 WA -
testcase_02 AC 37 ms
5,376 KB
testcase_03 AC 63 ms
5,376 KB
testcase_04 AC 88 ms
5,888 KB
testcase_05 AC 89 ms
6,016 KB
testcase_06 AC 89 ms
6,016 KB
testcase_07 AC 89 ms
6,016 KB
testcase_08 AC 92 ms
6,016 KB
testcase_09 AC 89 ms
6,016 KB
testcase_10 AC 79 ms
5,632 KB
testcase_11 AC 82 ms
5,760 KB
testcase_12 AC 76 ms
5,504 KB
testcase_13 AC 82 ms
5,632 KB
testcase_14 AC 86 ms
5,760 KB
testcase_15 AC 76 ms
5,504 KB
testcase_16 AC 86 ms
5,888 KB
testcase_17 AC 89 ms
6,016 KB
testcase_18 AC 91 ms
5,888 KB
testcase_19 AC 90 ms
6,016 KB
testcase_20 AC 91 ms
5,888 KB
testcase_21 AC 90 ms
6,016 KB
testcase_22 AC 79 ms
5,632 KB
testcase_23 AC 86 ms
5,632 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 16 ms
5,376 KB
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:23:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   23 |                         scanf("%lld", &lt);
      |                         ~~~~~^~~~~~~~~~~~~
main.cpp:27:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   27 |                 scanf("%lld", &k);
      |                 ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include<cstdio>
#include<vector>


using namespace std;
using ll=long long int;


int main(void)
{
	int i, j, n;
	ll k, sum;
	vector<long double> l;
	long double l_max, s, e, c, ans;

	while(scanf("%d", &n)==1)
	{
		l_max=0.0;
		l.resize(n);
		for(i=0;i<n;i++)
		{
			ll lt;
			scanf("%lld", &lt);
			l[i]=lt+1e-10;
			if(l_max<l[i]) l_max=l[i];
		}
		scanf("%lld", &k);

		s=l_max/k;
		e=l_max;
		ans=s;
		for(j=0;j<50;j++)
		{
			c=(s+e)*0.5;
			sum=0;
			for(i=0;i<n;i++)
			{
				sum+=l[i]/c;
			}
			if(sum>=k)
			{
				ans=c;
				s=c;
			}
			else
			{
				e=c;
			}
		}
		printf("%.16Lf\n", ans);
	}

	return 0;
}
0