結果

問題 No.48 ロボットの操縦
ユーザー MizunoMizuno
提出日時 2024-09-27 21:22:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,121 bytes
コンパイル時間 648 ms
コンパイル使用メモリ 67,856 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-09-27 21:22:48
合計ジャッジ時間 1,309 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <cmath> // ceil関数を使うため

using namespace std;

int min_commands(int X, int Y, int L) {
    int commands = 0;

    // Y方向 (北または南) に移動
    if (Y > 0) {  // 北に進む
        commands += (Y + L - 1) / L;  // 必要な前進命令の回数を計算
    } else if (Y < 0) {  // 南に進む
        commands += 1;  // 南に向きを変える命令
        commands += (-Y + L - 1) / L;  // 必要な前進命令の回数を計算
    }

    // X方向 (東または西) に移動
    if (X > 0) {  // 東に進む
        commands += 1;  // 東に向きを変える命令
        commands += (X + L - 1) / L;  // 必要な前進命令の回数を計算
    } else if (X < 0) {  // 西に進む
        commands += 1;  // 西に向きを変える命令
        commands += (-X + L - 1) / L;  // 必要な前進命令の回数を計算
    }

    return commands;
}

int main() {
    int X, Y, L;
    
    // 標準入力
    cin >> X >> Y >> L;
    
    // 必要な最小の命令回数を出力
    cout << min_commands(X, Y, L) << endl;
    
    return 0;
}
0