結果

問題 No.48 ロボットの操縦
ユーザー mustonmuston
提出日時 2016-05-19 14:06:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 508 bytes
コンパイル時間 1,747 ms
コンパイル使用メモリ 74,268 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-05-01 13:54:33
合計ジャッジ時間 5,525 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,940 KB
testcase_01 AC 101 ms
52,228 KB
testcase_02 AC 112 ms
54,116 KB
testcase_03 AC 116 ms
53,916 KB
testcase_04 AC 106 ms
52,616 KB
testcase_05 AC 123 ms
53,952 KB
testcase_06 AC 123 ms
53,988 KB
testcase_07 AC 123 ms
54,032 KB
testcase_08 AC 123 ms
53,968 KB
testcase_09 AC 119 ms
53,960 KB
testcase_10 AC 112 ms
53,892 KB
testcase_11 AC 117 ms
53,736 KB
testcase_12 AC 108 ms
52,568 KB
testcase_13 AC 120 ms
53,628 KB
testcase_14 AC 113 ms
54,072 KB
testcase_15 AC 116 ms
53,960 KB
testcase_16 AC 121 ms
53,976 KB
testcase_17 AC 112 ms
53,868 KB
testcase_18 AC 112 ms
53,912 KB
testcase_19 AC 114 ms
53,956 KB
testcase_20 AC 104 ms
52,768 KB
testcase_21 AC 117 ms
53,800 KB
testcase_22 AC 105 ms
52,452 KB
testcase_23 AC 117 ms
54,036 KB
testcase_24 AC 122 ms
54,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
/*yukicoder No.48 ロボットの操縦*/
class No48{
  public static void main(String[] args){
    Scanner scan = new Scanner(System.in);
    double x = scan.nextInt();
    double y = scan.nextInt();
    double l = scan.nextInt();
    double count = 0;
    if(y<0){
      y = -y;
      count += 2;
    }else if(x==0){
    }else{
      count++;
    }
    count += Math.ceil(y/l);
    if(x<0) x = -x;
    count += Math.ceil(x/l);
    System.out.println((int)count);
  }
}
0