結果

問題 No.48 ロボットの操縦
ユーザー ikdikd
提出日時 2015-10-31 09:44:59
言語 C++11
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 408 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 58,092 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-13 06:16:15
合計ジャッジ時間 2,231 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 18 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<stdio.h>
#include<math.h>

using namespace std;

int main(){
    int x, y, l;
    cin>> x>> y>> l;

    int cnt = 0;
    if(y < 0) y = -y;
    while(y!=0){
        y -= l;
        cnt++;
        if(y<0) break;
    }
    
    if(x!=0) cnt++;
    if(x < 0) x = -x;
    while(x!=0){
        x -= l;
        cnt++;
        if(x<0) break;
    }

    cout<< cnt<< endl;
    return 0;
}
0