結果

問題 No.23 技の選択
ユーザー 沙耶花沙耶花
提出日時 2021-10-21 12:21:13
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 458 bytes
コンパイル時間 4,353 ms
コンパイル使用メモリ 250,880 KB
最終ジャッジ日時 2025-01-25 02:13:03
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001

int main(){
	
	int H,A,D;
	cin>>H>>A>>D;
	double ans = 1e18;;
	rep(i,H+1){
		int remain = max(0,H - D * i);
		double temp = (remain+A-1)/A;
		temp += i * 1.5;
		ans = min(ans,temp);
	}
	
	cout<<fixed<<setprecision(10)<<ans<<endl;
	
	return 0;
}
0