結果
問題 | No.2343 (l+r)/2 |
ユーザー | 👑 Nachia |
提出日時 | 2023-06-09 21:05:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,063 bytes |
コンパイル時間 | 700 ms |
コンパイル使用メモリ | 79,596 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-10 12:37:34 |
合計ジャッジ時間 | 1,426 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 36 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 8 ms
6,940 KB |
testcase_05 | AC | 4 ms
6,940 KB |
testcase_06 | AC | 4 ms
6,940 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 4 ms
6,940 KB |
testcase_11 | AC | 8 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 9 ms
6,940 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <atcoder/modint> using namespace std; using i32 = int; using u32 = unsigned int; using i64 = long long; using u64 = unsigned long long; #define rep(i,n) for(int i=0; i<(int)(n); i++) const i64 INF = 1001001001001001001; using Modint = atcoder::static_modint<998244353>; int main(){ int T; cin >> T; rep(t,T){ int N; cin >> N; vector<int> A(N); rep(i,N) cin >> A[i]; int reps[2] = {}; rep(i,N-1) if(A[i] == A[i+1]) reps[A[i]] = 1; int cnt1 = 0; rep(i,N) cnt1 += A[i]; int cnt0 = N - cnt1; bool ans = true; if(cnt0 == 0 || cnt1 == 0) ans = false; if(A[0] == 0 && A.back() == 0 && reps[1] == 0) ans = false; if(A[0] == 1 && A.back() == 1 && reps[0] == 0) ans = false; cout << (ans ? "Yes\n" : "No\n"); } return 0; } struct ios_do_not_sync{ ios_do_not_sync(){ ios::sync_with_stdio(false); cin.tie(nullptr); } } ios_do_not_sync_instance;