結果

問題 No.48 ロボットの操縦
ユーザー 👑 p-adicp-adic
提出日時 2022-08-08 10:43:58
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 604 bytes
コンパイル時間 578 ms
コンパイル使用メモリ 71,456 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-18 21:37:03
合計ジャッジ時間 1,604 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <list>
#include <vector>
#include <string>
#include <stdio.h>
#include <stdint.h>
using namespace std;

using uint = unsigned int;
using ll = long long;

inline ll CountStep( const ll& D , const ll& L ) { return D >= 0 ? D / L + ( D % L == 0 ? 0 : 1 ) : CountStep( - D , L );}

int main()
{

  ll X;
  cin >> X;
  ll Y;
  cin >> Y;
  ll L;
  cin >> L;

  ll step;
  
  if( Y >= 0 ){

    step = CountStep( Y , L ) + ( X == 0 ? 0 : 1 + CountStep( X , L ) );

  } else {

    step = 1 + CountStep( X , L ) + 1 + CountStep( Y , L );

  }

  cout << step << endl;
  return 0;

}
0