結果

問題 No.2343 (l+r)/2
ユーザー LeoProLeoPro
提出日時 2023-06-09 21:03:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 732 bytes
コンパイル時間 1,789 ms
コンパイル使用メモリ 205,116 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-10 12:36:41
合計ジャッジ時間 2,533 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

#define int long long

using namespace std;
using ll = long long;

void solve();

template<typename ...Args>
void println(Args... args) {
    apply([](auto &&... args) { ((cout << args << ' '), ...); }, tuple(args...));
    cout << '\n';
}

int32_t main() {
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
    int t = 1;
    cin >> t;
    for (int tc = 0; tc < t; ++tc) {
        solve();
    }
    return 0;
}

void solve() {
    int n;
    cin >> n;
    vector<int> a(n);
    for (int &x : a) cin >> x;
    if (a.front() != a.back()) return println("Yes");
    int x = a.front();
    for (int i = 0; i + 1 < n; ++i) if (a[i] != x && a[i + 1] != x) return println("Yes");
    println("No");
}
0