結果

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

ソースコード

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){
    count= count + 2;
  }
  count = count + abs(y)/l;
  if(abs(y)%l != 0){
    count++;
  }

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

  cout << count << endl;

  return 0;
}
0