結果

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

ソースコード

diff #

#include <iostream>
#include <cmath>
using namespace std;

int main() {
	int x, y, l, c=0;
	cin >> x >> y >> l;
	c += abs(y/l);
	if(y%l != 0) {
		c++;
	}
	c++;
	c += abs(x/l);
	if(x%l != 0) {
		c++;
	}
	if(y < 0) {
		c++;
	}
	cout << c << endl;
	return 0;
}
0