結果

問題 No.48 ロボットの操縦
ユーザー test
提出日時 2017-06-10 09:23:02
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 416 bytes
コンパイル時間 561 ms
コンパイル使用メモリ 58,704 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-24 15:25:30
合計ジャッジ時間 1,213 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <cmath>
#include <cstdlib>

using namespace std;

int main() {
  int x, y, l, count=0;

  cin >> x >> y >> l;

  if(y >= 0){
    if(x != 0){
      count++;
    }
  }else{
    count= count+2;
  }
  count = count + abs(y)/l;
  if(abs(y)%l != 0){
    count++;
  }

  count = count + abs(x)/l;
  if(abs(x)%l != 0){
    count++;
  }

  cout << count << endl;

  return 0;
}
0