結果

問題 No.48 ロボットの操縦
ユーザー キョウチクキョウチク
提出日時 2022-05-28 18:38:20
言語 Java
(openjdk 23)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 569 bytes
コンパイル時間 4,169 ms
コンパイル使用メモリ 74,188 KB
実行使用メモリ 41,616 KB
最終ジャッジ日時 2024-09-20 23:27:33
合計ジャッジ時間 8,226 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

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