結果

問題 No.48 ロボットの操縦
コンテスト
ユーザー jp_ste
提出日時 2016-05-14 23:12:34
言語 Java
(openjdk 25.0.2)
コンパイル:
javac -encoding UTF8 _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true _class_
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 644 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,654 ms
コンパイル使用メモリ 82,732 KB
実行使用メモリ 41,692 KB
最終ジャッジ日時 2026-05-15 22:26:31
合計ジャッジ時間 4,985 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import java.util.Scanner;

public class Main2 {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            int x = Integer.parseInt(scan.next());
            int y = Integer.parseInt(scan.next());
            int l = Integer.parseInt(scan.next());
            int count = 0;
            
            if(y < 0) count+=2;
            else if(y >= 0 && x != 0) count++;              
              
            count += (Math.abs(y)/l) + (Math.abs(y)%l>0? 1:0);
            count += (Math.abs(x)/l) + (Math.abs(x)%l>0? 1:0);
            
            System.out.println(count);
         }
    }
}
0