結果
問題 | No.2518 Adjacent Larger |
ユーザー | fky_ |
提出日時 | 2023-10-25 12:28:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,061 bytes |
コンパイル時間 | 1,934 ms |
コンパイル使用メモリ | 203,024 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-25 05:54:03 |
合計ジャッジ時間 | 3,076 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 5 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 14 ms
6,940 KB |
testcase_17 | AC | 8 ms
6,944 KB |
testcase_18 | AC | 8 ms
6,940 KB |
testcase_19 | AC | 7 ms
6,944 KB |
testcase_20 | AC | 11 ms
6,940 KB |
testcase_21 | AC | 13 ms
6,944 KB |
testcase_22 | AC | 14 ms
6,944 KB |
testcase_23 | AC | 14 ms
6,940 KB |
testcase_24 | AC | 13 ms
6,944 KB |
testcase_25 | AC | 14 ms
6,944 KB |
testcase_26 | AC | 13 ms
6,944 KB |
testcase_27 | AC | 13 ms
6,940 KB |
testcase_28 | AC | 13 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define FOR(i, a, b) for (int i = a; i < (b); i++) #define RFOR(i, a, b) for (int i = a; i >= (b); i--) #define range(a) a.begin(), a.end() #define endl "\n" #define Yes() cout << "Yes" << endl #define No() cout << "No" << endl #define pb push_back int dx[4] = {-1, 0, 1, 0}; int dy[4] = {0, -1, 0, 1}; using P = pair<int, int>; const long long INFL = LLONG_MAX; const int INFI = INT_MAX; template<class T>bool chmin(T &a, const T &b) { if(a > b) {a = b; return true; } else return false; } template<class T>bool chmax(T &a, const T &b) { if(a < b) {a = b; return true; } else return false; } int main(void){ ios::sync_with_stdio(0); cin.tie(0); int T; cin >> T; while(T--){ int M; cin >> M; vector<int> A(M); FOR(i, 0, M) cin >> A[i]; if(accumulate(range(A), 0) != M || *max_element(range(A)) == 1){ No(); continue; } bool ok = true; FOR(i,0,M-1){ if(A[i] + A[i + 1] == 0 || A[i] + A[i + 1] == 4) ok = false; } if(ok) Yes(); else No(); } return 0; }