結果

問題 No.48 ロボットの操縦
ユーザー uafr_csuafr_cs
提出日時 2015-05-15 02:02:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 456 bytes
コンパイル時間 2,092 ms
コンパイル使用メモリ 74,104 KB
実行使用メモリ 41,648 KB
最終ジャッジ日時 2024-11-21 18:19:09
合計ジャッジ時間 5,666 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,648 KB
testcase_01 AC 119 ms
41,316 KB
testcase_02 AC 105 ms
40,032 KB
testcase_03 AC 117 ms
41,344 KB
testcase_04 AC 125 ms
41,552 KB
testcase_05 AC 122 ms
41,376 KB
testcase_06 AC 112 ms
40,652 KB
testcase_07 AC 118 ms
41,552 KB
testcase_08 AC 117 ms
41,300 KB
testcase_09 AC 116 ms
40,876 KB
testcase_10 AC 119 ms
41,376 KB
testcase_11 AC 124 ms
41,292 KB
testcase_12 AC 116 ms
41,092 KB
testcase_13 AC 111 ms
40,272 KB
testcase_14 AC 120 ms
41,512 KB
testcase_15 AC 125 ms
41,116 KB
testcase_16 AC 122 ms
41,540 KB
testcase_17 AC 106 ms
40,048 KB
testcase_18 AC 116 ms
41,192 KB
testcase_19 AC 116 ms
41,300 KB
testcase_20 AC 115 ms
40,980 KB
testcase_21 AC 119 ms
41,380 KB
testcase_22 AC 118 ms
41,048 KB
testcase_23 AC 116 ms
41,104 KB
testcase_24 AC 125 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final long X = sc.nextLong();
		final long Y = sc.nextLong();
		final long L = sc.nextLong();
		
		System.out.println(((Math.abs(X) / L) + (Math.abs(X) % L != 0 ? 1 : 0)) + ((Math.abs(Y) / L) + (Math.abs(Y) % L != 0 ? 1 : 0)) + (Y < 0 ? 2 : X != 0 ? 1 : 0));
		
	}
	
}
0