結果
| 問題 | 
                            No.48 ロボットの操縦
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2020-04-24 18:23:53 | 
| 言語 | C++14  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 2 ms / 5,000 ms | 
| コード長 | 609 bytes | 
| コンパイル時間 | 1,544 ms | 
| コンパイル使用メモリ | 165,584 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-10-15 02:04:48 | 
| 合計ジャッジ時間 | 2,075 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 25 | 
ソースコード
#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;
        return 0;
    } else if(X != 0 && Y < 0){
        ans += 2;
    } else if(X != 0){
        ans++;
    } else if(X == 0 && Y < 0){
        ans += 2;
    }
    ans += (abs(Y) + L - 1) / L; // x
    ans += (abs(X) + L - 1) / L; // y
    cout << ans << endl;
}