結果
問題 | No.406 鴨等間隔の法則 |
ユーザー | Daylight |
提出日時 | 2018-05-13 16:36:45 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,126 bytes |
コンパイル時間 | 755 ms |
コンパイル使用メモリ | 91,988 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-07 12:27:43 |
合計ジャッジ時間 | 28,991 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 368 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1,780 ms
5,376 KB |
testcase_05 | AC | 249 ms
5,376 KB |
testcase_06 | AC | 283 ms
5,376 KB |
testcase_07 | AC | 324 ms
5,376 KB |
testcase_08 | AC | 1,756 ms
5,376 KB |
testcase_09 | TLE | - |
testcase_10 | AC | 367 ms
5,376 KB |
testcase_11 | AC | 1,342 ms
5,376 KB |
testcase_12 | AC | 556 ms
5,376 KB |
testcase_13 | AC | 495 ms
5,376 KB |
testcase_14 | AC | 1,528 ms
5,376 KB |
testcase_15 | AC | 4 ms
5,376 KB |
testcase_16 | AC | 14 ms
5,376 KB |
testcase_17 | AC | 5 ms
5,376 KB |
testcase_18 | AC | 18 ms
5,376 KB |
testcase_19 | AC | 22 ms
5,376 KB |
testcase_20 | AC | 38 ms
5,376 KB |
testcase_21 | AC | 38 ms
5,376 KB |
testcase_22 | AC | 117 ms
5,376 KB |
testcase_23 | AC | 627 ms
5,376 KB |
testcase_24 | AC | 1,178 ms
5,376 KB |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | AC | 37 ms
5,376 KB |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
ソースコード
#include <iostream> #include <cstdio> #include <cstdlib> #include <cstring> #include <string> #include <sstream> #include <complex> #include <algorithm> #include <functional> #include <vector> #include <stack> #include <queue> #include <set> #include <map> #include <cmath> #include <typeinfo> #include <cassert> #include <fstream> #define REP(i,n) for(int i=0;i<n;i++) #define FOR(i,a,b) for(int i = a;i<b;i++) #define SSTR( x ) static_cast< std::ostringstream & >( \ ( std::ostringstream() << std::dec << x ) ).str() #define ALL(s) (s).begin(), (s).end() using namespace std; typedef long long unsigned int llu; typedef long long ll; int main (){ int n; vector<long int> x; while (cin >> n){ bool b = false; REP(i,n){ long int a; cin >> a; if(find(ALL(x),a) != x.end()){ b = true; } x.push_back(a); } if(b){ cout << "NO" << endl; continue; } sort(ALL(x)); long int d = x[1] - x[0]; FOR(i,2,n){ if(x[i] - x[i-1] != d ){ cout << "NO" << endl; b = true; break; } } if(!b) cout << "YES" << endl; } return 0; }