結果

問題 No.406 鴨等間隔の法則
ユーザー IamAFunOfKonIamAFunOfKon
提出日時 2016-09-21 00:12:49
言語 JavaScript
(node v21.7.1)
結果
WA  
実行時間 -
コード長 796 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 6,696 KB
実行使用メモリ 59,084 KB
最終ジャッジ日時 2024-10-12 23:46:16
合計ジャッジ時間 6,235 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
51,780 KB
testcase_01 AC 73 ms
41,216 KB
testcase_02 WA -
testcase_03 AC 73 ms
41,216 KB
testcase_04 AC 225 ms
56,428 KB
testcase_05 AC 128 ms
49,408 KB
testcase_06 AC 132 ms
49,664 KB
testcase_07 AC 131 ms
49,920 KB
testcase_08 AC 223 ms
56,536 KB
testcase_09 AC 237 ms
57,228 KB
testcase_10 AC 141 ms
50,176 KB
testcase_11 AC 199 ms
58,160 KB
testcase_12 AC 151 ms
52,148 KB
testcase_13 AC 147 ms
52,084 KB
testcase_14 AC 207 ms
58,884 KB
testcase_15 AC 79 ms
46,656 KB
testcase_16 AC 86 ms
45,952 KB
testcase_17 AC 80 ms
44,800 KB
testcase_18 AC 82 ms
46,464 KB
testcase_19 AC 89 ms
47,856 KB
testcase_20 AC 95 ms
48,628 KB
testcase_21 AC 96 ms
46,848 KB
testcase_22 AC 109 ms
47,872 KB
testcase_23 AC 160 ms
50,640 KB
testcase_24 AC 194 ms
55,784 KB
testcase_25 AC 240 ms
57,012 KB
testcase_26 AC 238 ms
56,912 KB
testcase_27 AC 154 ms
59,084 KB
testcase_28 AC 160 ms
56,880 KB
testcase_29 AC 240 ms
58,952 KB
testcase_30 AC 235 ms
57,076 KB
testcase_31 AC 232 ms
56,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

var lines = [];
var reader = require('readline').createInterface({
  input: process.stdin,
  output: process.stdout
});
var counter = 0;
reader.on('line', function (line) {
  counter += 1;
  lines.push(line);
  if( counter == 2){
    main();
    process.exit(0);
  }
});
process.stdin.on('end', function () {
});

function main(){
  var n = parseInt(lines[0]);
  var xs = [];
  lines[1].split(" ").map(function(x) {
    xs.push(parseInt(x));
  });
  xs.sort(function(a,b){
    if(a < b) return -1;
    if(a > b) return 1;
    return 0;
  });
  var sa = xs[1] - xs[0];
  if(sa == 0){
    console.log("NO");
    return 0;
  }
  for(var i = 1; i < n - 1; ++i){
    if(sa != xs[i + 1] - xs[i]){
      console.log("NO");
      return 0;
    }else{
      console.log("YES");
      return 0;
    }
  }
}
0