結果

問題 No.48 ロボットの操縦
ユーザー omc-testomc-test
提出日時 2016-08-22 09:19:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 639 bytes
コンパイル時間 3,086 ms
コンパイル使用メモリ 73,588 KB
実行使用メモリ 37,116 KB
最終ジャッジ日時 2024-11-21 18:47:47
合計ジャッジ時間 5,084 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
37,116 KB
testcase_01 AC 48 ms
36,956 KB
testcase_02 AC 48 ms
36,448 KB
testcase_03 AC 47 ms
36,840 KB
testcase_04 AC 46 ms
36,968 KB
testcase_05 AC 47 ms
37,012 KB
testcase_06 AC 49 ms
36,912 KB
testcase_07 AC 48 ms
37,012 KB
testcase_08 AC 48 ms
36,476 KB
testcase_09 AC 48 ms
36,596 KB
testcase_10 AC 49 ms
36,916 KB
testcase_11 AC 48 ms
36,920 KB
testcase_12 AC 47 ms
36,920 KB
testcase_13 AC 47 ms
36,904 KB
testcase_14 AC 46 ms
36,644 KB
testcase_15 AC 47 ms
36,988 KB
testcase_16 AC 47 ms
36,968 KB
testcase_17 AC 47 ms
36,936 KB
testcase_18 AC 48 ms
36,712 KB
testcase_19 AC 47 ms
37,096 KB
testcase_20 AC 47 ms
36,392 KB
testcase_21 AC 48 ms
36,724 KB
testcase_22 AC 48 ms
36,960 KB
testcase_23 AC 47 ms
36,788 KB
testcase_24 AC 48 ms
36,476 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