結果

問題 No.2343 (l+r)/2
ユーザー 👑 NachiaNachia
提出日時 2023-06-09 21:04:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,063 bytes
コンパイル時間 797 ms
コンパイル使用メモリ 78,788 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-30 12:36:11
合計ジャッジ時間 1,686 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 35 ms
4,380 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 8 ms
4,380 KB
testcase_05 AC 3 ms
4,380 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 3 ms
4,376 KB
testcase_11 WA -
testcase_12 AC 6 ms
4,380 KB
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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[0] == 0) ans = false;
        if(A[0] == 1 && A.back() == 1 && reps[1] == 1) 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;

0