結果

問題 No.406 鴨等間隔の法則
ユーザー ui_mtc
提出日時 2020-02-21 01:37:34
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 427 bytes
コンパイル時間 1,721 ms
コンパイル使用メモリ 172,812 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-08 19:34:13
合計ジャッジ時間 4,537 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 27 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

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

signed main() {
  int N;
  cin >> N;

  vector<int> A(N);
  for( int i = 0; i < N; i++ ) cin >> A.at(i);
  sort(A.begin(), A.end());

  int sa;
  for( int i = 1; i < N; i++ ){
    if( i == 1 ) sa = A.at(i)-A.at(i-1);
    else{
      if( A.at(i) - A.at(i-1) != sa ){
        cout << "NO" << endl;
        return 0;
      }
    }
  }
  cout << "YES" << endl;
}
0