結果

問題 No.48 ロボットの操縦
ユーザー dsytk7
提出日時 2019-07-24 11:29:34
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 544 bytes
コンパイル時間 1,537 ms
コンパイル使用メモリ 166,508 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-27 23:12:11
合計ジャッジ時間 2,550 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for (int (i)=(0);(i)<(int)(n);++(i))
using ll = long long;
using P = pair<int, int>;
using namespace std;

int main() {
    int X, Y, L;
    cin >> X >> Y >> L;
    int ans = 0;

    if (Y >= 0) {
        ans += Y/L + bool(Y%L);
        if (X != 0) ans++;
        X = abs(X);
        ans += X/L + bool(X%L);
    }
    else {
        ans += 2;
        X = abs(X);
        ans += X/L + bool(X%L);
        Y = abs(Y);
        ans += Y/L + bool(Y%L);
    }

    cout << ans << endl;
}
0