結果

問題 No.406 鴨等間隔の法則
ユーザー nenuon
提出日時 2017-06-26 02:23:00
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 814 ms
コンパイル使用メモリ 91,460 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-07 12:07:16
合計ジャッジ時間 2,298 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cstdio>
#include <iostream>
#include <map>
#include <cmath>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <vector>
#include <stdlib.h>
#include <stdio.h>
#include <bitset>
using namespace std;
#define FOR(I,A,B) for(int I = (A); I < (B); ++I)
typedef long long ll;

int main(){
  int n;
  cin >> n;
  int x[n];
  FOR(i,0,n){
    scanf("%d",x+i);
  }
  sort(x,x+n);
  int d = x[1] - x[0];
  if(d == 0) {
    cout << "NO" << endl;
    return 0;
  }
  FOR(i,1,n-1){
    if(x[i+1] - x[i] != d) {
      cout << "NO" << endl;
      return 0;
    }
  }
  cout << "YES" << endl;
  return 0;
}
0