結果

問題 No.2922 Rose Garden
ユーザー MizunoMizuno
提出日時 2024-10-12 16:53:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,198 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 62,848 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 16:53:53
合計ジャッジ時間 4,025 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 40 ms
5,248 KB
testcase_16 AC 52 ms
5,248 KB
testcase_17 AC 70 ms
5,248 KB
testcase_18 AC 6 ms
5,248 KB
testcase_19 AC 32 ms
5,248 KB
testcase_20 AC 49 ms
5,248 KB
testcase_21 AC 68 ms
5,248 KB
testcase_22 AC 40 ms
5,248 KB
testcase_23 AC 62 ms
5,248 KB
testcase_24 AC 12 ms
5,248 KB
testcase_25 AC 35 ms
5,248 KB
testcase_26 AC 51 ms
5,248 KB
testcase_27 AC 56 ms
5,248 KB
testcase_28 AC 54 ms
5,248 KB
testcase_29 AC 44 ms
5,248 KB
testcase_30 AC 5 ms
5,248 KB
testcase_31 AC 3 ms
5,248 KB
testcase_32 AC 4 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 5 ms
5,248 KB
testcase_35 AC 3 ms
5,248 KB
testcase_36 AC 8 ms
5,248 KB
testcase_37 AC 9 ms
5,248 KB
testcase_38 AC 5 ms
5,248 KB
testcase_39 AC 7 ms
5,248 KB
testcase_40 AC 47 ms
5,248 KB
testcase_41 AC 23 ms
5,248 KB
testcase_42 AC 74 ms
5,248 KB
testcase_43 AC 32 ms
5,248 KB
testcase_44 AC 71 ms
5,248 KB
testcase_45 AC 14 ms
5,248 KB
testcase_46 AC 73 ms
5,248 KB
testcase_47 AC 51 ms
5,248 KB
testcase_48 AC 13 ms
5,248 KB
testcase_49 AC 64 ms
5,248 KB
testcase_50 AC 2 ms
5,248 KB
testcase_51 AC 2 ms
5,248 KB
testcase_52 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;


// スタミナ1減らし 高度B上げ
// 今の足場から隣に 高度が隣の足場の高さ未満の時無理
// 一回休憩してスタミナをS獲得 しかし高さはリセット


int main(void){
    // Your code here!
    long int n,s,b,currentHigh,ss = 0;
    cin >> n >> s >> b;
    ss = s;
    long int h[n],i = 0;
    for(int i = 0; i < n; i++)cin >> h[i];
    currentHigh = h[0];
    // while(i < (n - 1)) {
        
    //     if(currentHigh >= h[i + 1]){
    //         if(currentHigh == h[i] ) ss = s;
    //         i++;
    //     }
        
        
        
    //     if(ss > 0){
    //         currentHigh += b;
    //         ss--;
    //     }
    //     else {
    //         currentHigh = h[i];
    //         ss = s; 
            
    //         if((s * b + h[i]) < h[i + 1]){
    //             cout << "No";
    //             return 0;
    //         }
    //     }
        
    //     if(currentHigh >= h[i + 1]){
    //         if(currentHigh == h[i] ) ss = s;
    //         if(currentHigh == h[i + 1] ) ss = s;
    //         i++;
            
    //     }
        
        
    
    // }
    cout << "Yes";
}
0