結果
問題 | No.208 王将 |
ユーザー | villach |
提出日時 | 2017-10-11 10:31:35 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 526 bytes |
コンパイル時間 | 3,835 ms |
コンパイル使用メモリ | 74,912 KB |
実行使用メモリ | 56,376 KB |
最終ジャッジ日時 | 2024-11-17 09:21:14 |
合計ジャッジ時間 | 7,723 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
54,148 KB |
testcase_01 | AC | 117 ms
52,916 KB |
testcase_02 | AC | 131 ms
54,116 KB |
testcase_03 | AC | 131 ms
54,176 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 128 ms
53,896 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 129 ms
54,188 KB |
testcase_16 | AC | 131 ms
53,928 KB |
testcase_17 | AC | 131 ms
53,908 KB |
testcase_18 | WA | - |
testcase_19 | AC | 129 ms
53,984 KB |
testcase_20 | AC | 129 ms
53,956 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
ソースコード
package yukicoder; import java.util.Scanner; public class N208 { public static void main(String[] args){ Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); int hx = sc.nextInt(); int hy = sc.nextInt(); int ななめ = Math.min(Math.abs(x), Math.abs(y)); int step; if(hx == hy && Math.abs(hx) <= ななめ){ step = 2; }else if(Math.abs(hx) > ななめ || Math.abs(hy) > ななめ){ step = 1; }else{ step = 0; } System.out.println(Math.max(x, y) + step); } }