結果

問題 No.3387 23578 Sequence
コンテスト
ユーザー Tyto alba
提出日時 2025-11-28 21:38:07
言語 C++23
(gcc 15.2.0 + boost 1.90.0)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 2,000 ms
+ 293µs
コード長 540 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,399 ms
コンパイル使用メモリ 334,916 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2026-07-17 01:04:31
合計ジャッジ時間 3,771 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
using namespace std;

int main() {
    int n, tp;
    bool f = true;
    vector<int> a;
    string ans ="No";

    cin >> n;
    for(int i=0; i<n; i++){
        cin >> tp;
        a.push_back(tp);
    }
    if (n<=2) ans ="Yes";
    
    else{
        int s = a.front() + a.back();
        int b = a.size() - 1;
        int j = n / 2;
        if (n % 2 != 0) j += 1;

        for(int i=1; i<j; i++){
            if(a[i] + a[b-i] != s) f = false;
        }
        if (f) ans ="Yes";
    }
    cout << ans << endl;
}
0