結果

問題 No.48 ロボットの操縦
ユーザー uafr_cs
提出日時 2015-05-15 02:01:08
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 443 bytes
コンパイル時間 1,680 ms
コンパイル使用メモリ 74,080 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-07-06 03:46:48
合計ジャッジ時間 5,076 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final long X = sc.nextLong();
		final long Y = sc.nextLong();
		final long L = sc.nextLong();
		
		System.out.println(((Math.abs(X) / L) + (Math.abs(X) % L != 0 ? 1 : 0)) + ((Math.abs(Y) / L) + (Math.abs(Y) % L != 0 ? 1 : 0)) + (Y < 0 ? 2 : 1));
		
	}
	
}
0