結果

問題 No.48 ロボットの操縦
ユーザー Drafear
提出日時 2016-01-18 03:39:15
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 254 bytes
コンパイル時間 1,121 ms
コンパイル使用メモリ 158,856 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-19 20:22:37
合計ジャッジ時間 1,868 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

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