結果

問題 No.135 とりあえず1次元の問題
ユーザー ontama_12ontama_12
提出日時 2016-09-27 14:09:01
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 204 ms / 5,000 ms
コード長 1,301 bytes
コンパイル時間 36 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 53,032 KB
最終ジャッジ日時 2024-10-12 23:51:53
合計ジャッジ時間 2,753 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 204 ms
52,900 KB
testcase_01 AC 60 ms
39,296 KB
testcase_02 AC 58 ms
39,296 KB
testcase_03 AC 57 ms
39,680 KB
testcase_04 AC 62 ms
39,296 KB
testcase_05 AC 59 ms
39,296 KB
testcase_06 AC 58 ms
39,424 KB
testcase_07 AC 59 ms
39,424 KB
testcase_08 AC 63 ms
39,424 KB
testcase_09 AC 62 ms
39,424 KB
testcase_10 AC 58 ms
39,552 KB
testcase_11 AC 59 ms
39,552 KB
testcase_12 AC 57 ms
39,424 KB
testcase_13 AC 58 ms
39,296 KB
testcase_14 AC 63 ms
42,624 KB
testcase_15 AC 63 ms
39,296 KB
testcase_16 AC 60 ms
42,880 KB
testcase_17 AC 63 ms
42,880 KB
testcase_18 AC 60 ms
39,424 KB
testcase_19 AC 59 ms
42,752 KB
testcase_20 AC 59 ms
39,296 KB
testcase_21 AC 109 ms
50,196 KB
testcase_22 AC 194 ms
53,032 KB
evil01.txt AC 161 ms
53,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

   /////////////////////////////No.135 とりあえず1次元の問題
        //入力文字読み取り
        var inputall = require('fs').readFileSync('/dev/stdin', 'utf8');

        //すべて受け取り改行で区切って格納
        var input = inputall.split("\n");

        //座標点の合計値
        var coordinateall = Number(input[0]);

        //座標点をひとつずつを配列に格納
        var coordinate = input[1].split(" ").map(Number);
        
        //座標点をソート
        coordinate.sort(
        function (a, b) {
        if (a < b) return -1;
        if (a > b) return 1;
        return 0;
        });
        
        //座標間の最小値をcountに代入し、更新していく。初期値を座標間の最大値の+1にしておく
        var count = 1000001
        for (var i = 0; i < coordinateall-1; i++) {
            var coordinate_difference = coordinate[i + 1] - coordinate[i]
            if (coordinate_difference < count && coordinate_difference != 0) { 
                count = coordinate_difference;
            }
        }

        //座標間の最小値を出力、座標間が0のみであれば0を出力
        if(count ==1000001){
            console.log(0)
        }else{
            console.log(count)
        }
    
0