結果

問題 No.1883 SLASH
ユーザー test
提出日時 2022-11-23 04:22:18
言語 JavaScript
(node v23.5.0)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 41,584 KB
最終ジャッジ日時 2024-09-24 09:26:30
合計ジャッジ時間 1,916 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

function arrInt(arr) {
    return arr.map(str => parseInt(str, 10));
}
function Main(input) {
    const src = input.replace("\n", "");
    const abc = arrInt([...src]).sort((a, b) => a - b);
    const ans = abc[2] - abc[0];
    console.log(ans);
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0