結果

問題 No.406 鴨等間隔の法則
ユーザー TksiTksi
提出日時 2018-10-20 00:12:36
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 476 bytes
コンパイル時間 32 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 58,680 KB
最終ジャッジ日時 2024-10-13 00:47:53
合計ジャッジ時間 4,787 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
49,172 KB
testcase_01 AC 58 ms
39,296 KB
testcase_02 AC 56 ms
39,296 KB
testcase_03 AC 56 ms
39,552 KB
testcase_04 AC 132 ms
56,600 KB
testcase_05 AC 86 ms
48,524 KB
testcase_06 AC 89 ms
48,840 KB
testcase_07 AC 91 ms
48,600 KB
testcase_08 AC 133 ms
56,532 KB
testcase_09 AC 135 ms
57,440 KB
testcase_10 AC 93 ms
49,240 KB
testcase_11 AC 125 ms
54,760 KB
testcase_12 AC 96 ms
50,292 KB
testcase_13 AC 91 ms
49,252 KB
testcase_14 AC 200 ms
56,956 KB
testcase_15 AC 64 ms
43,136 KB
testcase_16 AC 72 ms
44,288 KB
testcase_17 AC 67 ms
43,264 KB
testcase_18 AC 64 ms
44,032 KB
testcase_19 AC 69 ms
44,504 KB
testcase_20 AC 77 ms
45,184 KB
testcase_21 AC 79 ms
45,184 KB
testcase_22 AC 91 ms
46,220 KB
testcase_23 AC 100 ms
50,348 KB
testcase_24 AC 187 ms
55,592 KB
testcase_25 AC 142 ms
57,720 KB
testcase_26 AC 229 ms
58,556 KB
testcase_27 AC 118 ms
52,888 KB
testcase_28 AC 137 ms
57,844 KB
testcase_29 AC 227 ms
58,680 KB
testcase_30 AC 222 ms
58,508 KB
testcase_31 AC 136 ms
57,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let input = require('fs').readFileSync('/dev/stdin', 'utf8');
let [[N], x] = input.split('\n').map(v => v.split(/\s/).map(v => Number(v)));
if ([...new Set(x)].length != x.length) {
  console.log('NO');
} else {
  x.sort((a, b) => a - b);
  let diff = 0;
  for (let i = 1; i < x.length; i++) {
    if (i == 1) diff = x[i] - x[i - 1];
    else if (i == x.length - 1) console.log('YES');
    else if (diff != x[i] - x[i - 1]) {
      console.log('NO');
      break;
    }
  }
}
0