結果

問題 No.2056 非力なレッド
ユーザー a16784542a16784542
提出日時 2022-09-17 18:43:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,684 bytes
コンパイル時間 3,984 ms
コンパイル使用メモリ 260,400 KB
実行使用メモリ 4,856 KB
最終ジャッジ日時 2023-08-23 17:51:44
合計ジャッジ時間 7,403 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 49 ms
4,380 KB
testcase_14 AC 48 ms
4,380 KB
testcase_15 AC 48 ms
4,376 KB
testcase_16 AC 6 ms
4,376 KB
testcase_17 AC 33 ms
4,376 KB
testcase_18 AC 4 ms
4,380 KB
testcase_19 AC 7 ms
4,376 KB
testcase_20 AC 57 ms
4,468 KB
testcase_21 AC 13 ms
4,380 KB
testcase_22 AC 48 ms
4,380 KB
testcase_23 AC 41 ms
4,380 KB
testcase_24 AC 23 ms
4,380 KB
testcase_25 AC 59 ms
4,380 KB
testcase_26 AC 63 ms
4,388 KB
testcase_27 AC 59 ms
4,384 KB
testcase_28 AC 75 ms
4,668 KB
testcase_29 AC 75 ms
4,628 KB
testcase_30 AC 75 ms
4,768 KB
testcase_31 AC 75 ms
4,628 KB
testcase_32 AC 74 ms
4,856 KB
testcase_33 AC 75 ms
4,588 KB
testcase_34 AC 74 ms
4,632 KB
testcase_35 AC 74 ms
4,632 KB
testcase_36 AC 75 ms
4,628 KB
testcase_37 AC 75 ms
4,668 KB
testcase_38 AC 1 ms
4,376 KB
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
// #include <ext/pb_ds/assoc_container.hpp>
// #include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace atcoder;
// using namespace __gnu_pbds;

using ll=long long;
#define int ll
using ld = long double;
#define _overload3(_1,_2,_3,name,...) name
#define _rep(i,n) repi(i,0,n)
#define repi(i,a,b) for(int i=int(a);i<int(b);++i)
#define rep(...) _overload3(__VA_ARGS__,repi,_rep,)(__VA_ARGS__)
#define rrep(i,n) for(int i=int(n-1);i>=int(0);--i)
#define fore(i,a) for(auto &i:a)
#define all(x) x.begin(),x.end() 
#define sz(x) ((int)(x).size())
#define bp(x) (__builtin_popcount((long long)(x)))
#define pb push_back
#define eb emplace_back
#define mpa make_pair
#define bit(n) (1LL<<(n))
template <class T> using V = vector<T>;
template <class T> using VV = V<V<T>>;
template <class T> using max_heap = priority_queue<T>;
template <class T> using min_heap = priority_queue<T, vector<T>, greater<>>;
#define P pair<int,int>
#define TP tuple<int,int,int>
#define F first
#define S second
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; }
const int INF = 1001001001;
const ll INFL = 3e18;
const int MAX = 2e6+1;


signed main() {
    int n,x,m;cin>>n>>x>>m;
    V<int> a(n);
    rep(i,n)cin>>a[i];
    int now=0;
    ll mp=0;
    rrep(i,n){
        rep(j,now)a[i]/=2;
        while(x<a[i]){
            now++;
            mp+=i+1;
            a[i]/=2;
        }
    }
    if(mp<=m){
        cout<<"Yes"<<endl;
        return 0;
    }
    else{
        cout<<"No"<<endl;
        return 0;
    }
}
0