結果
問題 | No.48 ロボットの操縦 |
ユーザー | shin |
提出日時 | 2022-05-15 20:34:41 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 54 ms / 5,000 ms |
コード長 | 1,020 bytes |
コンパイル時間 | 5,331 ms |
コンパイル使用メモリ | 78,756 KB |
実行使用メモリ | 50,332 KB |
最終ジャッジ日時 | 2024-09-13 07:01:02 |
合計ジャッジ時間 | 6,311 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
50,156 KB |
testcase_01 | AC | 54 ms
49,860 KB |
testcase_02 | AC | 54 ms
50,228 KB |
testcase_03 | AC | 53 ms
49,648 KB |
testcase_04 | AC | 52 ms
50,164 KB |
testcase_05 | AC | 53 ms
50,260 KB |
testcase_06 | AC | 53 ms
50,052 KB |
testcase_07 | AC | 53 ms
49,984 KB |
testcase_08 | AC | 52 ms
50,264 KB |
testcase_09 | AC | 53 ms
50,220 KB |
testcase_10 | AC | 52 ms
50,220 KB |
testcase_11 | AC | 53 ms
50,308 KB |
testcase_12 | AC | 52 ms
50,228 KB |
testcase_13 | AC | 53 ms
49,892 KB |
testcase_14 | AC | 52 ms
50,332 KB |
testcase_15 | AC | 52 ms
50,284 KB |
testcase_16 | AC | 52 ms
50,120 KB |
testcase_17 | AC | 53 ms
50,272 KB |
testcase_18 | AC | 53 ms
50,232 KB |
testcase_19 | AC | 54 ms
50,224 KB |
testcase_20 | AC | 54 ms
50,132 KB |
testcase_21 | AC | 53 ms
50,168 KB |
testcase_22 | AC | 54 ms
50,048 KB |
testcase_23 | AC | 53 ms
50,252 KB |
testcase_24 | AC | 52 ms
50,124 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; public class No48 { public static void main(String[] args) throws IOException { //ロボットの操縦 String[] text = readStr(); Long X = Long.parseLong(text[0]) , Y = Long.parseLong(text[1]) , L = Long.parseLong(text[2]); Long count = Math.floorDiv(Math.abs(X), L) + Math.floorDiv(Math.abs(Y) , L); if(Math.floorMod(Math.abs(X), L) > 0) { count += 1; } if(Math.floorMod(Math.abs(Y), L) > 0) { count += 1; } if(Y >= 0 && X != 0) { count += 1; }else if(Y < 0){ count += 2; } System.out.println(count); } public static String[] readStr() throws IOException{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); ArrayList<String> list = new ArrayList<>(); do { list.add(br.readLine()); }while(br.ready()); br.close(); String[] text = new String[list.size()]; list.toArray(text); return text; } }