結果
問題 | No.208 王将 |
ユーザー | mobius_bkst |
提出日時 | 2015-05-15 22:48:08 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,190 bytes |
コンパイル時間 | 2,899 ms |
コンパイル使用メモリ | 77,380 KB |
実行使用メモリ | 37,348 KB |
最終ジャッジ日時 | 2024-07-06 04:11:41 |
合計ジャッジ時間 | 4,679 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 42 ms
36,948 KB |
testcase_02 | AC | 42 ms
37,132 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 43 ms
36,616 KB |
testcase_08 | AC | 43 ms
36,956 KB |
testcase_09 | AC | 41 ms
37,032 KB |
testcase_10 | WA | - |
testcase_11 | AC | 42 ms
37,120 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 43 ms
37,348 KB |
testcase_20 | AC | 42 ms
37,172 KB |
testcase_21 | WA | - |
testcase_22 | AC | 42 ms
36,916 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; public class No208 { public static void main(String[] args) { try { BufferedReader br = new BufferedReader(new InputStreamReader( System.in)); int[] a = strToIntArray(br.readLine()); int x = a[0]; int y = a[1]; a = strToIntArray(br.readLine()); int x2 = a[0]; int y2 = a[1]; int min = Math.min(x, y); int sub = Math.abs(x - y); boolean isSameSide = x * x2 > 0 && y * y2 > 0; if (Math.abs(x2) - Math.abs(y2) != 0 && !isSameSide) { System.out.println(min + sub); } else { System.out.println(min + sub + 3); } } catch (Exception e) { System.err.println("Error:" + e.getMessage()); } } static int[] strToIntArray(String S) { String[] strArray = S.split(" "); int[] intArray = new int[strArray.length]; for (int i = 0; i < strArray.length; i++) { intArray[i] = Integer.parseInt(strArray[i]); } return intArray; } }