結果
| 問題 | No.23 技の選択 | 
| コンテスト | |
| ユーザー |  monnu | 
| 提出日時 | 2021-07-14 01:53:34 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 5,000 ms | 
| コード長 | 473 bytes | 
| コンパイル時間 | 1,351 ms | 
| コンパイル使用メモリ | 167,996 KB | 
| 実行使用メモリ | 5,376 KB | 
| 最終ジャッジ日時 | 2024-07-02 22:52:01 | 
| 合計ジャッジ時間 | 2,273 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 33 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
//#include <atcoder/all>
//using namespace atcoder;
using ll=long long;
using Graph=vector<vector<int>>;
#define MAX 1000000
#define MOD 1000000009
//#define MOD 998244353
#define INF 1000000000
//#define INF 1000000000000000000
int main(){
  int H,A,D;
  cin>>H>>A>>D;
  vector<double> dp(H+1,1e10);
  dp[0]=0.0;
  for(int i=1;i<=H;i++){
    dp[i]=min(dp[max(0,i-A)]+1.0,dp[max(0,i-D)]+1.5);
  }
  printf("%.6lf\n",dp[H]);
}
            
            
            
        