結果

問題 No.48 ロボットの操縦
ユーザー リチウムリチウム
提出日時 2014-10-23 22:45:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 398 bytes
コンパイル時間 3,523 ms
コンパイル使用メモリ 74,056 KB
実行使用メモリ 41,496 KB
最終ジャッジ日時 2024-11-21 18:06:11
合計ジャッジ時間 7,440 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
40,924 KB
testcase_01 AC 121 ms
40,912 KB
testcase_02 AC 117 ms
40,936 KB
testcase_03 AC 118 ms
41,076 KB
testcase_04 AC 119 ms
40,620 KB
testcase_05 AC 109 ms
39,796 KB
testcase_06 AC 110 ms
39,784 KB
testcase_07 AC 120 ms
41,496 KB
testcase_08 AC 120 ms
41,184 KB
testcase_09 AC 115 ms
40,280 KB
testcase_10 AC 121 ms
40,904 KB
testcase_11 AC 114 ms
40,408 KB
testcase_12 AC 108 ms
39,668 KB
testcase_13 AC 120 ms
40,968 KB
testcase_14 AC 120 ms
40,992 KB
testcase_15 AC 110 ms
40,136 KB
testcase_16 AC 120 ms
40,960 KB
testcase_17 AC 121 ms
41,172 KB
testcase_18 AC 114 ms
39,820 KB
testcase_19 AC 118 ms
40,920 KB
testcase_20 AC 120 ms
40,856 KB
testcase_21 AC 121 ms
41,108 KB
testcase_22 AC 113 ms
40,364 KB
testcase_23 AC 120 ms
41,064 KB
testcase_24 AC 117 ms
41,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		double x=sc.nextInt();
		double y=sc.nextInt();
		double l=sc.nextInt();
		int ans=(int)(Math.ceil(Math.abs(x)/l)+Math.ceil(Math.abs(y)/l));
		int muki=0;
		if(y>=0 && x==0)muki=0;
		if(y>=0 && x!=0)muki=1;
		if(y<0)muki=2;
		System.out.println(ans+muki);
	}
	}
0