結果
問題 | No.2343 (l+r)/2 |
ユーザー | 👑 Nachia |
提出日時 | 2023-06-10 14:17:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 35 ms / 2,000 ms |
コード長 | 1,112 bytes |
コンパイル時間 | 745 ms |
コンパイル使用メモリ | 79,472 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-10 21:27:29 |
合計ジャッジ時間 | 1,429 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 35 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 16 ms
5,376 KB |
testcase_04 | AC | 8 ms
5,376 KB |
testcase_05 | AC | 4 ms
5,376 KB |
testcase_06 | AC | 4 ms
5,376 KB |
testcase_07 | AC | 7 ms
5,376 KB |
testcase_08 | AC | 9 ms
5,376 KB |
testcase_09 | AC | 7 ms
5,376 KB |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | AC | 8 ms
5,376 KB |
testcase_12 | AC | 7 ms
5,376 KB |
testcase_13 | AC | 5 ms
5,376 KB |
testcase_14 | AC | 10 ms
5,376 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]]++; 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; if(N - reps[0] - reps[1] >= 9) ans = true; 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;