結果

問題 No.48 ロボットの操縦
ユーザー mustonmuston
提出日時 2016-05-19 14:06:24
言語 Java
(openjdk 23)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 508 bytes
コンパイル時間 2,385 ms
コンパイル使用メモリ 74,276 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-11-21 18:39:59
合計ジャッジ時間 6,687 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

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