結果

問題 No.48 ロボットの操縦
ユーザー machy
提出日時 2015-06-11 21:28:12
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 445 bytes
コンパイル時間 661 ms
コンパイル使用メモリ 73,724 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-06 15:46:02
合計ジャッジ時間 1,414 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <cmath>
#include <iomanip>
#include <map>
using namespace std;
typedef long long LL;

LL iabs(LL n){
    if(n < 0) return -n;
    return n;
}

int main(){
    LL x, y, L;
    cin >> x >> y >> L;
    LL ans = (iabs(x)+L-1)/L + (iabs(y)+L-1)/L;
    if(y > 0){
        if(x != 0) ans++;
    }else{
        ans += 2;
    }
    cout << ans << endl;
    return 0;
}
0