結果

問題 No.48 ロボットの操縦
コンテスト
ユーザー キョウチク
提出日時 2022-05-28 18:38:20
言語 Java
(openjdk 26.0.2.1 + ACL)
コンパイル:
javac -J-Duser.language=en -encoding UTF8 -cp /opt/aclib/ac_library.jar _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true -cp .:/opt/aclib/ac_library.jar _class_
結果
AC  
実行時間 56 ms / 5,000 ms
+ 176µs
コード長 569 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,897 ms
コンパイル使用メモリ 84,692 KB
実行使用メモリ 45,956 KB
最終ジャッジ日時 2026-09-01 07:29:09
合計ジャッジ時間 6,390 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import java.util.*;
public class Test12 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    String[] line;
    line=sc.nextLine().split(" ");
    int x=Integer.parseInt(line[0]);
    line=sc.nextLine().split(" ");
    int y=Integer.parseInt(line[0]);
    line=sc.nextLine().split(" ");
    int l=Integer.parseInt(line[0]);
    int turn=0;
    if(x!=0){
      turn=1;
      if(x<0) x*=-1;
    }
    if(y<0){
      turn=2;
      y*=-1;
    }
    turn+=(x+l-1)/l;
    turn+=(y+l-1)/l;
    System.out.println(turn);
    sc.close();
  }
}
0