結果

問題 No.23 技の選択
ユーザー ytftytft
提出日時 2021-03-03 09:25:14
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 442 bytes
コンパイル時間 1,626 ms
コンパイル使用メモリ 167,700 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-03 03:07:50
合計ジャッジ時間 2,706 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;


int main(){
    int h,a,d;
    cin>>h>>a>>d;
    vector<double> attacks(h+1);
    for(int i=1;i<=h;i++){
        if(i<=a){
            attacks[i]=1;
        }else if(i>d){
            attacks[i]=(1+attacks[i-a]<attacks[i-d]+1.5)?(1+attacks[i-a]):(attacks[i-d]+1.5);
        }else{
            attacks[i]=(1+attacks[i-a]<1.5)?(1+attacks[i-a]):(1.5);
        }
    }
    cout<<attacks[h]<<endl;
}
0