結果

問題 No.48 ロボットの操縦
ユーザー ひゅーらひゅーら
提出日時 2017-06-21 18:49:15
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 420 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 28,416 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-02 10:56:34
合計ジャッジ時間 1,075 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int main(void){
	int x, y, l;
	scanf("%d%d%d", &x, &y, &l);
	int ans = 0;
	if(y >= 0){
		if(x){
			ans++;
		}
	}
	else{
		ans += 2;
	}
	if(x < 0){
		x = -x;
	}
	if(y < 0){
		y = -y;
	}
	if(l == 1){
		printf("%d\n", ans + x + y);
	}
	else{
		if(x % l == 0){
			x = x/l;
		}
		else{
			x = x/l+1;
		}
		if(y % l == 0){
			y = y/l;
		}
		else{
			y = y/l+1;
		}
		printf("%d\n", ans+x+y);
	}
	return 0;
}
0