結果

問題 No.48 ロボットの操縦
ユーザー kuramukuramu
提出日時 2016-01-19 23:28:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 777 bytes
コンパイル時間 2,711 ms
コンパイル使用メモリ 74,724 KB
実行使用メモリ 50,360 KB
最終ジャッジ日時 2024-09-21 14:39:32
合計ジャッジ時間 4,543 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,944 KB
testcase_01 AC 53 ms
36,696 KB
testcase_02 AC 56 ms
36,804 KB
testcase_03 WA -
testcase_04 AC 51 ms
37,072 KB
testcase_05 AC 51 ms
37,084 KB
testcase_06 AC 51 ms
36,848 KB
testcase_07 AC 53 ms
36,876 KB
testcase_08 WA -
testcase_09 AC 53 ms
36,984 KB
testcase_10 WA -
testcase_11 AC 52 ms
36,804 KB
testcase_12 AC 53 ms
36,944 KB
testcase_13 AC 52 ms
36,572 KB
testcase_14 AC 52 ms
37,112 KB
testcase_15 AC 54 ms
36,672 KB
testcase_16 AC 53 ms
37,020 KB
testcase_17 AC 53 ms
36,572 KB
testcase_18 WA -
testcase_19 AC 53 ms
36,984 KB
testcase_20 AC 53 ms
36,988 KB
testcase_21 AC 52 ms
36,696 KB
testcase_22 WA -
testcase_23 AC 53 ms
37,080 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

	public static void main(String[] args) {
	      BufferedReader stdReader =new BufferedReader(new InputStreamReader(System.in));
	      String line = "";
	      int count=0;
	      try {
	    	  int X = Integer.parseInt(stdReader.readLine());
	    	  int Y = Integer.parseInt(stdReader.readLine());
	    	  int L = Integer.parseInt(stdReader.readLine());
    		  count += Math.abs(X)/L;
	    	  if(X%L!= 0) count++;
	    	  count += Math.abs(Y)/L;
	    	  if(Y%L!=0) count++;
	    	  if(Y<0) count += 2;
	    	  if(X!=0) count++;
	    	  System.out.println(count);
	    	  } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0