結果
問題 | No.2056 非力なレッド |
ユーザー | sorag |
提出日時 | 2022-08-26 23:15:16 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 770 bytes |
コンパイル時間 | 1,243 ms |
コンパイル使用メモリ | 117,664 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-13 23:56:48 |
合計ジャッジ時間 | 4,275 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | AC | 54 ms
5,248 KB |
testcase_14 | WA | - |
testcase_15 | AC | 53 ms
5,248 KB |
testcase_16 | AC | 7 ms
5,248 KB |
testcase_17 | WA | - |
testcase_18 | AC | 4 ms
5,248 KB |
testcase_19 | AC | 8 ms
5,248 KB |
testcase_20 | AC | 65 ms
5,248 KB |
testcase_21 | AC | 15 ms
5,248 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 26 ms
5,248 KB |
testcase_25 | AC | 66 ms
5,248 KB |
testcase_26 | AC | 71 ms
5,248 KB |
testcase_27 | AC | 66 ms
5,248 KB |
testcase_28 | AC | 82 ms
5,248 KB |
testcase_29 | AC | 83 ms
5,248 KB |
testcase_30 | AC | 83 ms
5,248 KB |
testcase_31 | AC | 84 ms
5,248 KB |
testcase_32 | AC | 83 ms
5,248 KB |
testcase_33 | AC | 83 ms
5,248 KB |
testcase_34 | WA | - |
testcase_35 | AC | 83 ms
5,248 KB |
testcase_36 | AC | 83 ms
5,248 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 2 ms
5,248 KB |
testcase_40 | WA | - |
ソースコード
#include<iostream> #include<string> #include<vector> #include<algorithm> #include<map> #include<math.h> #include<set> #define all(x) x.begin(),x.end() #define gall(x) x.begin(),x.end(),greater<>() #define pb push_back #define ll long long #define P pair<int,int> #define LP pair<ll,ll> using namespace std; int main() { int n, x, m, magic; P ma; ll cnt=0; cin >> n >> x >> m; bool f = 1; vector<P> a(n); for (int i = 0; i < n; i++) { cin >> a[i].first; a[i].second = i; ma.first = max(ma.first, a[i].first); if (ma.first == a[i].first) ma.second = a[i].second; } magic = min(n, m); if (magic < ma.second+1) f = 0; if (f) cout << "Yes" << endl; else cout << "No" << endl; return 0; }