結果
| 問題 | No.3387 23578 Sequence |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-11-28 21:38:07 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 540 bytes |
| コンパイル時間 | 3,414 ms |
| コンパイル使用メモリ | 278,688 KB |
| 実行使用メモリ | 7,852 KB |
| 最終ジャッジ日時 | 2025-11-28 21:38:25 |
| 合計ジャッジ時間 | 4,067 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 28 |
ソースコード
#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;
}