結果

問題 No.48 ロボットの操縦
ユーザー kuramukuramu
提出日時 2016-01-19 23:37:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 883 bytes
コンパイル時間 1,977 ms
コンパイル使用メモリ 74,360 KB
実行使用メモリ 48,236 KB
最終ジャッジ日時 2024-11-21 18:32:52
合計ジャッジ時間 3,997 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
47,820 KB
testcase_01 AC 50 ms
48,180 KB
testcase_02 AC 50 ms
47,816 KB
testcase_03 AC 51 ms
48,064 KB
testcase_04 AC 51 ms
48,180 KB
testcase_05 AC 51 ms
48,180 KB
testcase_06 AC 51 ms
48,004 KB
testcase_07 AC 51 ms
47,764 KB
testcase_08 AC 50 ms
48,212 KB
testcase_09 AC 51 ms
48,212 KB
testcase_10 AC 51 ms
47,820 KB
testcase_11 AC 50 ms
48,172 KB
testcase_12 AC 50 ms
48,064 KB
testcase_13 AC 49 ms
48,064 KB
testcase_14 AC 51 ms
48,180 KB
testcase_15 AC 49 ms
47,760 KB
testcase_16 AC 50 ms
48,180 KB
testcase_17 AC 50 ms
48,064 KB
testcase_18 AC 51 ms
48,236 KB
testcase_19 AC 50 ms
47,696 KB
testcase_20 AC 51 ms
48,188 KB
testcase_21 AC 51 ms
47,760 KB
testcase_22 AC 51 ms
48,188 KB
testcase_23 AC 49 ms
48,140 KB
testcase_24 AC 49 ms
48,148 KB
権限があれば一括ダウンロードができます

ソースコード

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());
	    	  if(X!=0) count++;
    		  count += Math.abs(X)/L;
	    	  if(Math.abs(X)%L!= 0) count++;
	    	  count += Math.abs(Y)/L;
	    	  if(Math.abs(Y)%L!=0) count++;
	    	  if(Y<0){
	    		  if(X !=0){
	    		  count++;
		    	  }else{
		    		  count += 2;
		    	  }
	    	  }
	    	  System.out.println(count);
	    	  } catch (IOException e) {
			e.printStackTrace();
	      }
	}
}
0