結果
問題 | No.135 とりあえず1次元の問題 |
ユーザー | destagia |
提出日時 | 2021-02-28 02:19:08 |
言語 | TypeScript (5.7.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 386 bytes |
コンパイル時間 | 8,253 ms |
コンパイル使用メモリ | 230,376 KB |
実行使用メモリ | 49,700 KB |
最終ジャッジ日時 | 2024-12-31 16:31:23 |
合計ジャッジ時間 | 11,050 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
49,700 KB |
testcase_01 | AC | 65 ms
39,168 KB |
testcase_02 | WA | - |
testcase_03 | AC | 65 ms
39,296 KB |
testcase_04 | WA | - |
testcase_05 | AC | 68 ms
39,424 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 65 ms
39,168 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 125 ms
49,580 KB |
evil01.txt | AC | 124 ms
49,584 KB |
ソースコード
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)); if (N === 1) { console.log(0); } else { let min = 1000000; for (let i = 1; i < xs.length; i++) { min = Math.min(min, Math.abs(xs[i - 1] - xs[i])); } console.log(min); }