結果

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

ソースコード

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{
    if(x != 0){
      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