結果

問題 No.48 ロボットの操縦
ユーザー papipenpapipen
提出日時 2017-03-27 23:14:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 103 ms / 5,000 ms
コード長 541 bytes
コンパイル時間 1,631 ms
コンパイル使用メモリ 74,540 KB
実行使用メモリ 41,492 KB
最終ジャッジ日時 2024-07-06 09:55:40
合計ジャッジ時間 4,865 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,892 KB
testcase_01 AC 102 ms
40,792 KB
testcase_02 AC 103 ms
41,272 KB
testcase_03 AC 103 ms
41,140 KB
testcase_04 AC 102 ms
40,888 KB
testcase_05 AC 92 ms
40,168 KB
testcase_06 AC 102 ms
41,100 KB
testcase_07 AC 101 ms
40,936 KB
testcase_08 AC 101 ms
41,132 KB
testcase_09 AC 103 ms
41,040 KB
testcase_10 AC 98 ms
41,172 KB
testcase_11 AC 98 ms
40,884 KB
testcase_12 AC 89 ms
40,140 KB
testcase_13 AC 99 ms
40,972 KB
testcase_14 AC 86 ms
39,928 KB
testcase_15 AC 98 ms
40,844 KB
testcase_16 AC 101 ms
41,492 KB
testcase_17 AC 92 ms
40,140 KB
testcase_18 AC 93 ms
40,184 KB
testcase_19 AC 100 ms
41,104 KB
testcase_20 AC 92 ms
40,012 KB
testcase_21 AC 100 ms
41,252 KB
testcase_22 AC 103 ms
41,100 KB
testcase_23 AC 102 ms
40,912 KB
testcase_24 AC 102 ms
40,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class robotto{
	public static void main(String args[]){
		Scanner s = new Scanner(System.in);
		int x = s.nextInt();
		int y = s.nextInt();
		int L = s.nextInt();
		int xtime = (int)Math.abs(x / L);
		int ytime = (int)Math.abs(y / L);
		int retur = 0;
		if(x != 0 && y >= 0){
			retur = 1;
		}else if(y < 0){
			retur = 2;
		}
		
		if(x != 0 && (x % L != 0 || Math.abs(x) < L)){
			xtime += 1;
		}
		if(y != 0 && (y % L != 0 || Math.abs(y) < L)){
			ytime += 1;
		}
		System.out.println(xtime + ytime + retur);
	}
}
0