結果

問題 No.48 ロボットの操縦
ユーザー butchi_ybutchi_y
提出日時 2014-10-23 23:05:41
言語 JavaScript
(node v21.7.1)
結果
WA  
実行時間 -
コード長 803 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 6,692 KB
実行使用メモリ 41,328 KB
最終ジャッジ日時 2024-10-12 23:32:09
合計ジャッジ時間 2,740 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
39,040 KB
testcase_01 AC 64 ms
39,040 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 63 ms
39,168 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 64 ms
39,040 KB
testcase_08 WA -
testcase_09 AC 63 ms
39,168 KB
testcase_10 WA -
testcase_11 AC 63 ms
39,040 KB
testcase_12 AC 62 ms
39,296 KB
testcase_13 AC 62 ms
39,040 KB
testcase_14 AC 64 ms
39,168 KB
testcase_15 AC 65 ms
39,168 KB
testcase_16 AC 62 ms
39,168 KB
testcase_17 AC 64 ms
39,424 KB
testcase_18 WA -
testcase_19 AC 64 ms
39,040 KB
testcase_20 AC 63 ms
38,784 KB
testcase_21 AC 62 ms
39,168 KB
testcase_22 WA -
testcase_23 AC 63 ms
39,040 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input) {
    var tmp = input.split("\n");
    var x = parseInt(tmp[0], 10);
    var y = parseInt(tmp[1], 10);
    var l = parseInt(tmp[2], 10);

    ans = minStep(x, y, l);
    console.log('%d', ans);

    function minStep(x, y, l) { 
        var absX = Math.abs(x);
        var absY = Math.abs(y);
        if(x === 0 && y === 0) {
            return 4;
        } else if(y === 0) {
            return minLineStep(l, absX);
        } else if(x === 0) {
            return minLineStep(l, absY);
        } else {
            return minLineStep(l, absX) + minLineStep(l, absY) + 1;
        }
    }

    function minLineStep(l, x) {
        return Math.floor((x + l - 1)/l);
    }
}

// Don't edit this line!
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0