結果

問題 No.48 ロボットの操縦
ユーザー shinshin
提出日時 2022-05-15 20:25:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 968 bytes
コンパイル時間 4,643 ms
コンパイル使用メモリ 78,696 KB
実行使用メモリ 50,492 KB
最終ジャッジ日時 2024-09-13 06:49:28
合計ジャッジ時間 6,582 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,072 KB
testcase_01 AC 54 ms
49,952 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 54 ms
50,308 KB
testcase_05 AC 55 ms
49,836 KB
testcase_06 WA -
testcase_07 AC 54 ms
50,176 KB
testcase_08 WA -
testcase_09 AC 55 ms
50,144 KB
testcase_10 WA -
testcase_11 AC 54 ms
49,844 KB
testcase_12 AC 56 ms
50,360 KB
testcase_13 AC 55 ms
49,968 KB
testcase_14 AC 55 ms
50,100 KB
testcase_15 AC 55 ms
50,260 KB
testcase_16 AC 54 ms
50,276 KB
testcase_17 AC 56 ms
50,268 KB
testcase_18 WA -
testcase_19 AC 55 ms
49,788 KB
testcase_20 AC 56 ms
50,244 KB
testcase_21 AC 55 ms
50,264 KB
testcase_22 WA -
testcase_23 AC 55 ms
50,212 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No48 {

	public static void main(String[] args) throws IOException {
		//ロボットの操縦
		String[] text = readStr();
		Long X = Math.abs(Long.parseLong(text[0])) , Y = Math.abs(Long.parseLong(text[1])) , L = Long.parseLong(text[2]);
		
		Long count = Math.floorDiv(X, L) + Math.floorDiv(Y , L);
		if(Math.floorMod(X, L) > 0) {
			count += 1;
		}
		if(Math.floorMod(Y, L) > 0) {
			count += 1;
		}
		if(X != 0 && Y != 0) {
			count += 1;
		}
		
		System.out.println(count);

	}
	
	public static String[] readStr() throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		ArrayList<String> list = new ArrayList<>();
		
		do {
			list.add(br.readLine());
		}while(br.ready());
		
		br.close();
		
		String[] text = new String[list.size()];
		list.toArray(text);
		
		return text;
		
	}

}
0