結果

問題 No.48 ロボットの操縦
ユーザー キョウチクキョウチク
提出日時 2022-05-28 18:38:20
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,468 KB
testcase_01 AC 120 ms
40,932 KB
testcase_02 AC 120 ms
41,296 KB
testcase_03 AC 107 ms
39,824 KB
testcase_04 AC 107 ms
40,124 KB
testcase_05 AC 120 ms
41,376 KB
testcase_06 AC 118 ms
41,448 KB
testcase_07 AC 105 ms
39,992 KB
testcase_08 AC 116 ms
41,240 KB
testcase_09 AC 107 ms
40,000 KB
testcase_10 AC 117 ms
41,232 KB
testcase_11 AC 115 ms
40,940 KB
testcase_12 AC 110 ms
40,576 KB
testcase_13 AC 118 ms
40,960 KB
testcase_14 AC 115 ms
41,104 KB
testcase_15 AC 116 ms
40,828 KB
testcase_16 AC 103 ms
39,868 KB
testcase_17 AC 114 ms
41,616 KB
testcase_18 AC 118 ms
40,800 KB
testcase_19 AC 117 ms
41,080 KB
testcase_20 AC 111 ms
40,900 KB
testcase_21 AC 116 ms
40,784 KB
testcase_22 AC 119 ms
41,096 KB
testcase_23 AC 115 ms
40,932 KB
testcase_24 AC 100 ms
40,224 KB
権限があれば一括ダウンロードができます

ソースコード

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