結果

問題 No.48 ロボットの操縦
ユーザー yu_017yu_017
提出日時 2019-02-03 09:41:46
言語 Java
(openjdk 23)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 394 bytes
コンパイル時間 3,463 ms
コンパイル使用メモリ 74,384 KB
実行使用メモリ 54,236 KB
最終ジャッジ日時 2024-12-15 13:42:34
合計ジャッジ時間 7,449 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class A000048 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int x = sc.nextInt();
		int y = sc.nextInt();
		int l = sc.nextInt();
		sc.close();
		int r = 0;
		if(y<0)r++;
		if(x!=0) {
			r++;
			r+=((x>0?x:-x)-1)/l+1;
		}else if(y<0) {
			r++;
		}
		if(y!=0) {
			r+=((y>0?y:-y)-1)/l+1;
		}
		System.out.println(r);
	}
}
0