結果

問題 No.48 ロボットの操縦
ユーザー 水野嶺水野嶺
提出日時 2020-05-25 14:09:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 557 bytes
コンパイル時間 2,007 ms
コンパイル使用メモリ 73,632 KB
実行使用メモリ 41,396 KB
最終ジャッジ日時 2024-10-13 02:03:58
合計ジャッジ時間 5,886 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,396 KB
testcase_01 AC 125 ms
41,192 KB
testcase_02 AC 125 ms
41,112 KB
testcase_03 AC 122 ms
41,272 KB
testcase_04 AC 125 ms
41,288 KB
testcase_05 AC 117 ms
40,844 KB
testcase_06 AC 123 ms
41,232 KB
testcase_07 AC 110 ms
40,148 KB
testcase_08 AC 125 ms
41,232 KB
testcase_09 AC 112 ms
40,080 KB
testcase_10 AC 109 ms
40,052 KB
testcase_11 AC 124 ms
41,196 KB
testcase_12 AC 123 ms
41,204 KB
testcase_13 AC 125 ms
41,336 KB
testcase_14 AC 125 ms
41,348 KB
testcase_15 AC 124 ms
41,388 KB
testcase_16 AC 118 ms
41,036 KB
testcase_17 AC 112 ms
40,160 KB
testcase_18 AC 125 ms
41,056 KB
testcase_19 AC 124 ms
41,144 KB
testcase_20 AC 120 ms
41,008 KB
testcase_21 AC 113 ms
39,896 KB
testcase_22 AC 128 ms
41,036 KB
testcase_23 AC 111 ms
40,848 KB
testcase_24 AC 123 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Main
{
	public static void main (String[] args) 
	{
		// 入力値の読み込み
		Scanner sc = new Scanner(System.in);
		int  x = sc.nextInt();
		int  y = sc.nextInt();
		int  n = sc.nextInt();
		int count=0;
		
		if(y < 0){
			count = 2;
		}else{
			if(!(x ==0)){
				count = 1;
			}
		}
		int xa = x/n;
		int xb = Math.abs(xa);
		if(!(x%n == 0)){
			xb += 1;
		}
		
		int ya = y/n;
		int yb = Math.abs(ya);
		if(!(y%n == 0)){
			yb += 1;
		}
		
		System.out.println(count + xb + yb);
	}
}
0