結果
問題 | No.2056 非力なレッド |
ユーザー |
![]() |
提出日時 | 2025-03-29 05:19:07 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 673 bytes |
コンパイル時間 | 3,368 ms |
コンパイル使用メモリ | 277,940 KB |
実行使用メモリ | 7,328 KB |
最終ジャッジ日時 | 2025-03-29 05:19:13 |
合計ジャッジ時間 | 5,803 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 WA * 15 |
ソースコード
#include <bits/stdc++.h>//#include <atcoder/modint>using namespace std;//using namespace atcoder;using ll = long long;//using mint = modint998244353;int main(){cin.tie(nullptr);ios_base::sync_with_stdio(false);ll N, X, M, A, ans=0;cin >> N >> M >> X;vector<ll> c(N);for (int i=0; i<N; i++){cin >> A;while(A > X){A /= 2;c[i]++;}}for (int i=N-2; i>=0; i--) c[i] = max(c[i], c[i+1]);c.push_back(0);for (int i=N-1; i>=0; i--){ans += (c[i]-c[i+1]) * (i+1);}if (ans <= X) cout << "Yes" << endl;else cout << "No" << endl;return 0;}