結果

問題 No.48 ロボットの操縦
ユーザー omc-testomc-test
提出日時 2016-08-22 09:19:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 639 bytes
コンパイル時間 3,369 ms
コンパイル使用メモリ 74,128 KB
実行使用メモリ 37,316 KB
最終ジャッジ日時 2024-05-01 14:00:51
合計ジャッジ時間 5,500 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
36,948 KB
testcase_01 AC 54 ms
37,184 KB
testcase_02 AC 53 ms
36,888 KB
testcase_03 AC 54 ms
37,060 KB
testcase_04 AC 52 ms
37,128 KB
testcase_05 AC 52 ms
37,296 KB
testcase_06 AC 52 ms
37,132 KB
testcase_07 AC 52 ms
37,212 KB
testcase_08 AC 53 ms
37,060 KB
testcase_09 AC 53 ms
36,872 KB
testcase_10 AC 52 ms
36,936 KB
testcase_11 AC 53 ms
36,628 KB
testcase_12 AC 53 ms
36,752 KB
testcase_13 AC 53 ms
37,048 KB
testcase_14 AC 53 ms
37,152 KB
testcase_15 AC 53 ms
37,316 KB
testcase_16 AC 54 ms
36,956 KB
testcase_17 AC 53 ms
36,776 KB
testcase_18 AC 52 ms
37,028 KB
testcase_19 AC 53 ms
37,096 KB
testcase_20 AC 52 ms
36,968 KB
testcase_21 AC 55 ms
36,936 KB
testcase_22 AC 53 ms
36,760 KB
testcase_23 AC 53 ms
36,944 KB
testcase_24 AC 53 ms
36,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No0048 {
	public static void main(String[] args){
		try(BufferedReader br = new BufferedReader(new InputStreamReader(System.in))){
			long x = Long.parseLong(br.readLine());
			long y = Long.parseLong(br.readLine());
			long l = Long.parseLong(br.readLine());

			long cnt = Math.abs(y) / l + Math.abs(x) / l;
			if(Math.abs(y) % l > 0) cnt++;
			if(Math.abs(x) % l > 0) cnt++;

			if(y >= 0){
				if(x != 0) cnt ++;
			}else{
				cnt += 2;
			}

			System.out.println(cnt);
		}catch(IOException e){
			e.printStackTrace();
		}
	}
}
0