結果
| 問題 |
No.406 鴨等間隔の法則
|
| コンテスト | |
| ユーザー |
ui_mtc
|
| 提出日時 | 2020-02-21 01:38:42 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 43 ms / 2,000 ms |
| コード長 | 510 bytes |
| コンパイル時間 | 1,573 ms |
| コンパイル使用メモリ | 172,288 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-07 12:48:08 |
| 合計ジャッジ時間 | 3,238 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 |
ソースコード
#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;
}
}
if( A.at(i) == A.at(i-1) ){
cout << "NO" << endl;
return 0;
}
}
cout << "YES" << endl;
}
ui_mtc