結果

問題 No.48 ロボットの操縦
ユーザー jin128
提出日時 2016-08-26 14:49:21
言語 Java
(openjdk 23)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 547 bytes
コンパイル時間 2,118 ms
コンパイル使用メモリ 73,984 KB
実行使用メモリ 54,172 KB
最終ジャッジ日時 2024-11-21 18:48:49
合計ジャッジ時間 5,979 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class S18_robot{
  public static void main(String[] args){
    int x, y, l;
    int count = 0;
    Scanner scn = new Scanner(System.in);

    x = scn.nextInt();
    y = scn.nextInt();
    l = scn.nextInt();

    if(y < 0){
      count += 2;
    }else if(Math.abs(x) > 0){
      count ++;
    }

    if(x % l == 0)
      count += Math.abs(x) / l;
    else
      count += Math.abs(x) / l + 1;

    if(y % l == 0)
      count += Math.abs(y) / l;
    else
      count += Math.abs(y) / l + 1;

    System.out.println(count);
  }
}
0