結果
| 問題 | No.3387 23578 Sequence |
| コンテスト | |
| ユーザー |
vjudge1
|
| 提出日時 | 2026-02-09 01:17:53 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 538 bytes |
| 記録 | |
| コンパイル時間 | 3,211 ms |
| コンパイル使用メモリ | 336,640 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2026-02-09 01:17:59 |
| 合計ジャッジ時間 | 4,947 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 28 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n; cin >> n;
vector<int> arr(n);
for(auto &x: arr) cin >> x;
int left = 0, right = n-1;
bool is_krick = true;
int target_sum = arr[left] + arr[right];
while(left <= right) {
if((arr[left] + arr[right]) != target_sum) {
is_krick = false;
break;
}
left++;
right--;
}
if (is_krick) cout << "Yes" << endl;
else cout << "No" << endl;
return 0;
}
vjudge1