結果

問題 No.23 技の選択
ユーザー Kutimoti_TKutimoti_T
提出日時 2017-12-18 18:16:55
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 497 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 55,828 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-28 17:25:58
合計ジャッジ時間 1,205 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

//URL:https://yukicoder.me/problems/no/23

#include <iostream>
#define FOR(i,s,e) for(int i = (s);i <= (e);i++)
using namespace std;

int H,A,D;

double res = 100000;

int main()
{
	cout << fixed;
	cin >> H >> A >> D;
	int maxN = H / A;
	if(H % A != 0) maxN++;
	FOR(i,0,maxN)
	{
		int now = H - A * i;
		double cou = i;
		if(now > 0)
		{
			int need = now / D;
			if(now % D != 0) need++;
			cou += static_cast<double>(1.5 * need);
		}
		res = min(res,cou);
	}
	cout << res << endl;

	return 0;
}
0