結果

問題 No.135 とりあえず1次元の問題
ユーザー destagiadestagia
提出日時 2021-02-28 02:23:43
言語 TypeScript
(5.7.2)
結果
WA  
実行時間 -
コード長 437 bytes
コンパイル時間 7,919 ms
コンパイル使用メモリ 229,084 KB
実行使用メモリ 53,292 KB
最終ジャッジ日時 2024-12-31 16:30:41
合計ジャッジ時間 10,966 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 235 ms
53,280 KB
testcase_01 AC 64 ms
39,168 KB
testcase_02 AC 62 ms
39,168 KB
testcase_03 WA -
testcase_04 AC 63 ms
39,424 KB
testcase_05 AC 64 ms
39,424 KB
testcase_06 AC 63 ms
39,424 KB
testcase_07 AC 62 ms
39,296 KB
testcase_08 AC 63 ms
39,168 KB
testcase_09 AC 61 ms
39,168 KB
testcase_10 AC 63 ms
39,168 KB
testcase_11 AC 61 ms
39,296 KB
testcase_12 AC 64 ms
39,296 KB
testcase_13 AC 61 ms
39,168 KB
testcase_14 AC 62 ms
39,040 KB
testcase_15 AC 67 ms
39,168 KB
testcase_16 AC 62 ms
39,168 KB
testcase_17 AC 61 ms
39,168 KB
testcase_18 AC 61 ms
39,296 KB
testcase_19 AC 61 ms
39,168 KB
testcase_20 AC 61 ms
39,168 KB
testcase_21 AC 119 ms
50,456 KB
testcase_22 AC 230 ms
53,292 KB
evil01.txt AC 189 ms
53,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import * as fs from 'fs';
const input = fs.readFileSync('/dev/stdin', 'utf8');

const [NStr, xArrStr] = input.split('\n');
const N = parseInt(NStr);
const xs = xArrStr.split(' ').map(s => parseInt(s));

xs.sort();

if (N === 1) {
  console.log(0);
} else {
  let min = 1000000;
  for (let i = 1; i < xs.length; i++) {
    if (xs[i] !== xs[i - 1]) {
      min = Math.min(min, Math.abs(xs[i - 1] - xs[i]));
    }
  }

  console.log(min);
}
0