結果

問題 No.2922 Rose Garden
ユーザー pockynypockyny
提出日時 2024-10-12 15:11:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 421 bytes
コンパイル時間 635 ms
コンパイル使用メモリ 74,240 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-12 15:11:52
合計ジャッジ時間 7,492 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
5,316 KB
testcase_01 AC 28 ms
5,248 KB
testcase_02 AC 41 ms
5,248 KB
testcase_03 AC 76 ms
6,816 KB
testcase_04 AC 45 ms
5,248 KB
testcase_05 AC 39 ms
5,248 KB
testcase_06 AC 26 ms
5,248 KB
testcase_07 AC 61 ms
5,248 KB
testcase_08 AC 15 ms
5,248 KB
testcase_09 AC 66 ms
5,744 KB
testcase_10 AC 23 ms
5,248 KB
testcase_11 AC 13 ms
5,248 KB
testcase_12 AC 44 ms
5,248 KB
testcase_13 AC 77 ms
5,544 KB
testcase_14 AC 12 ms
5,248 KB
testcase_15 AC 41 ms
5,248 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 6 ms
6,820 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 41 ms
6,816 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 54 ms
6,816 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 4 ms
6,820 KB
testcase_33 AC 3 ms
6,820 KB
testcase_34 RE -
testcase_35 AC 3 ms
6,816 KB
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 AC 24 ms
6,820 KB
testcase_42 RE -
testcase_43 WA -
testcase_44 RE -
testcase_45 AC 15 ms
6,816 KB
testcase_46 RE -
testcase_47 AC 52 ms
6,816 KB
testcase_48 AC 13 ms
6,820 KB
testcase_49 RE -
testcase_50 AC 2 ms
6,820 KB
testcase_51 AC 2 ms
6,816 KB
testcase_52 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

using namespace std;
typedef long long ll;
ll h[200010];
int main(){
    ll i,n,s,b; cin >> n >> s >> b;
    for(i=0;i<n;i++) cin >> h[i];
    vector<ll> v = {h[0]};
    for(i=1;i<n;i++){
        if(v.back()<h[i]) v.push_back(h[i]);
    }
    for(i=1;i<n;i++){
        if(v[i] - v[i - 1]>s*b){
            cout << "No\n";
            return 0;
        }
    }
    cout << "Yes\n";
}
0