結果

問題 No.48 ロボットの操縦
ユーザー papipenpapipen
提出日時 2017-03-27 23:35:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 479 bytes
コンパイル時間 2,015 ms
コンパイル使用メモリ 73,820 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-07-06 10:01:35
合計ジャッジ時間 5,481 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,080 KB
testcase_01 AC 106 ms
52,788 KB
testcase_02 AC 118 ms
54,012 KB
testcase_03 AC 115 ms
54,016 KB
testcase_04 AC 106 ms
52,836 KB
testcase_05 AC 111 ms
53,592 KB
testcase_06 AC 116 ms
53,964 KB
testcase_07 AC 107 ms
52,904 KB
testcase_08 AC 117 ms
53,972 KB
testcase_09 AC 116 ms
53,784 KB
testcase_10 AC 117 ms
53,952 KB
testcase_11 AC 99 ms
52,828 KB
testcase_12 AC 104 ms
53,076 KB
testcase_13 AC 117 ms
53,836 KB
testcase_14 AC 115 ms
54,016 KB
testcase_15 AC 115 ms
53,976 KB
testcase_16 AC 125 ms
53,888 KB
testcase_17 AC 131 ms
53,944 KB
testcase_18 AC 121 ms
54,000 KB
testcase_19 AC 115 ms
53,724 KB
testcase_20 AC 105 ms
53,064 KB
testcase_21 AC 103 ms
53,076 KB
testcase_22 AC 125 ms
54,004 KB
testcase_23 AC 118 ms
54,364 KB
testcase_24 AC 121 ms
53,724 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 % L != 0){
			xtime += 1;
		}
		if(y % L != 0){
			ytime += 1;
		}
		System.out.println(xtime + ytime + retur);
	}
}
0