結果
| 問題 | 
                            No.48 ロボットの操縦
                             | 
                    
| コンテスト | |
| ユーザー | 
                             izryt(趣味)
                         | 
                    
| 提出日時 | 2016-01-16 14:28:18 | 
| 言語 | C++11(廃止可能性あり)  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 311 bytes | 
| コンパイル時間 | 1,099 ms | 
| コンパイル使用メモリ | 158,568 KB | 
| 実行使用メモリ | 5,376 KB | 
| 最終ジャッジ日時 | 2024-09-19 19:57:40 | 
| 合計ジャッジ時間 | 1,795 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 23 WA * 2 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main()
{
    double X, Y, L; cin >> X >> Y >> L;
    int ans;
    if (Y > 0) {
        if (X == 0) ans = 0;
        else ans = 1;
    } else {
        ans = 2;
    }
    ans += (abs(X) + L - 1) / L;
    ans += (abs(Y) + L - 1) / L;
    cout << ans << endl;
}
            
            
            
        
            
izryt(趣味)