結果

問題 No.48 ロボットの操縦
ユーザー forest3forest3
提出日時 2020-03-19 15:52:42
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 344 bytes
コンパイル時間 1,537 ms
コンパイル使用メモリ 165,448 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-14 03:16:09
合計ジャッジ時間 2,545 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
	long long X, Y, L;
	cin >> X >> Y >> L;

	long long dx = (abs( X ) + L - 1) / L;
	long long dy = (abs( Y ) + L - 1) / L;

	long long ans = dx + dy;
	if( X == 0 ) {
		if( Y < 0 ) ans += 2;
	}
	else if( Y == 0 ) ans++;
	else if( Y > 0 ) ans++;
	else ans += 2;

	cout << ans << endl;
}
0