結果

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

ソースコード

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++;
	}
	if(x != 0) {
		c++;
	}
	c += abs(x/l);
	if(x%l != 0) {
		c++;
	}
	if(y < 0) {
		c++;
	}
	cout << c << endl;
	return 0;
}
0