結果

問題 No.48 ロボットの操縦
ユーザー uafr_csuafr_cs
提出日時 2015-05-15 02:01:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 443 bytes
コンパイル時間 1,680 ms
コンパイル使用メモリ 74,080 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-07-06 03:46:48
合計ジャッジ時間 5,076 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 92 ms
40,444 KB
testcase_02 AC 106 ms
41,180 KB
testcase_03 AC 105 ms
41,336 KB
testcase_04 AC 105 ms
41,372 KB
testcase_05 WA -
testcase_06 AC 94 ms
39,876 KB
testcase_07 AC 98 ms
40,060 KB
testcase_08 AC 108 ms
41,336 KB
testcase_09 AC 96 ms
40,336 KB
testcase_10 AC 113 ms
41,132 KB
testcase_11 AC 108 ms
40,896 KB
testcase_12 AC 105 ms
40,912 KB
testcase_13 AC 103 ms
41,212 KB
testcase_14 AC 93 ms
40,012 KB
testcase_15 AC 103 ms
40,900 KB
testcase_16 AC 103 ms
41,276 KB
testcase_17 AC 107 ms
41,088 KB
testcase_18 AC 107 ms
41,128 KB
testcase_19 AC 106 ms
41,000 KB
testcase_20 AC 96 ms
40,344 KB
testcase_21 AC 105 ms
41,448 KB
testcase_22 AC 100 ms
41,292 KB
testcase_23 AC 103 ms
41,136 KB
testcase_24 AC 106 ms
41,268 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 : 1));
		
	}
	
}
0