結果
問題 | No.48 ロボットの操縦 |
ユーザー | papipen |
提出日時 | 2017-03-27 23:02:48 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 505 bytes |
コンパイル時間 | 2,810 ms |
コンパイル使用メモリ | 74,784 KB |
実行使用メモリ | 41,464 KB |
最終ジャッジ日時 | 2024-07-06 09:55:32 |
合計ジャッジ時間 | 6,624 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
41,316 KB |
testcase_01 | AC | 129 ms
41,240 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 133 ms
41,260 KB |
testcase_05 | AC | 127 ms
41,308 KB |
testcase_06 | WA | - |
testcase_07 | AC | 127 ms
41,096 KB |
testcase_08 | WA | - |
testcase_09 | AC | 128 ms
41,176 KB |
testcase_10 | WA | - |
testcase_11 | AC | 128 ms
41,276 KB |
testcase_12 | AC | 128 ms
41,204 KB |
testcase_13 | AC | 125 ms
41,216 KB |
testcase_14 | AC | 128 ms
41,372 KB |
testcase_15 | AC | 115 ms
39,952 KB |
testcase_16 | AC | 128 ms
41,384 KB |
testcase_17 | AC | 127 ms
41,464 KB |
testcase_18 | WA | - |
testcase_19 | AC | 131 ms
41,064 KB |
testcase_20 | AC | 129 ms
40,944 KB |
testcase_21 | AC | 130 ms
41,400 KB |
testcase_22 | WA | - |
testcase_23 | AC | 126 ms
41,088 KB |
testcase_24 | WA | - |
ソースコード
import java.util.Scanner; class robotto{ public static void main(String args[]){ Scanner s = new Scanner(System.in); int x = s.nextInt(); int y = s.nextInt(); int L = s.nextInt(); int xtime = (int)Math.abs(x / L); int ytime = (int)Math.abs(y / L); int retur = 1; if(x == 0 || y == 0){ retur = 0; } if(x != 0 && (x % L != 0 || Math.abs(x) < L)){ xtime += 1; } if(y != 0 && (y % L != 0 || Math.abs(y) < L)){ ytime += 1; } System.out.println(xtime + ytime + retur); } }