結果

問題 No.48 ロボットの操縦
ユーザー IdeDaisuke
提出日時 2020-04-24 18:16:39
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 538 bytes
コンパイル時間 1,401 ms
コンパイル使用メモリ 165,328 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-15 02:04:40
合計ジャッジ時間 2,252 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
typedef long long ll;
const int INF = 1000000000; // 10^9
int main() {
    // ifstream in("data1.txt");
    // cin.rdbuf(in.rdbuf());
    int X, Y, L;
    cin >> X >> Y >> L;
    int ans = 0;
    if(Y == 0 && X == 0){
        cout << 0 << endl;
    }
    if(X != 0){
        ans++;
        if(Y < 0){
            ans++;
        }
    }
    ans += (abs(Y) + L - 1) / L; // x
    ans += (abs(X) + L - 1) / L; // y
    cout << ans << endl;
}
0