結果

問題 No.48 ロボットの操縦
コンテスト
ユーザー shinwisteria
提出日時 2017-03-18 21:18:49
言語 Java
(openjdk 25.0.2)
コンパイル:
javac -encoding UTF8 _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true _class_
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 594 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,708 ms
コンパイル使用メモリ 83,232 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2026-03-26 02:46:34
合計ジャッジ時間 4,687 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import java.util.Scanner;

public class Robo {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int X = s.nextInt(), Y = s.nextInt(), L = s.nextInt(), count = 0;
		s.close();
		if(Y >= 0){
				count += COUNT(Y, L);
				if(X != 0){
					count += COUNT(X,L) + 1;
				}
		}else{
			count += 2;
			if(X == 0){
				count += COUNT(Y,L);
			}else{
				count += COUNT(X,L);
				count += COUNT(Y,L);
			}
			
		}
		System.out.println(count);

	}
	
	static int COUNT(int p,int k){
		if(p%k == 0){
			return Math.abs(p/k);
		}else{
			return Math.abs(p/k) + 1;
		}
	}
}
0