結果

問題 No.48 ロボットの操縦
コンテスト
ユーザー michonz4
提出日時 2019-05-23 10:12:13
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 213 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 57,252 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-17 09:42:10
合計ジャッジ時間 1,291 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>

using namespace std;

int main(){
  int X, Y, L;
  cin >> X >> Y >> L;
  int ans=(abs(X)+L-1)/L+(abs(Y)+L-1)/L;
  if (X!=0 && Y!=0) ans++;
  cout << ans << endl;
  return 0;
}
0