結果

問題 No.208 王将
ユーザー shinwisteriashinwisteria
提出日時 2017-04-02 12:22:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 1,000 ms
コード長 410 bytes
コンパイル時間 2,588 ms
コンパイル使用メモリ 74,576 KB
実行使用メモリ 54,168 KB
最終ジャッジ日時 2024-07-08 00:00:19
合計ジャッジ時間 6,008 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
53,516 KB
testcase_01 AC 105 ms
53,604 KB
testcase_02 AC 107 ms
53,964 KB
testcase_03 AC 104 ms
53,648 KB
testcase_04 AC 99 ms
52,916 KB
testcase_05 AC 109 ms
53,884 KB
testcase_06 AC 113 ms
54,156 KB
testcase_07 AC 110 ms
54,036 KB
testcase_08 AC 111 ms
53,948 KB
testcase_09 AC 98 ms
52,848 KB
testcase_10 AC 106 ms
53,932 KB
testcase_11 AC 107 ms
54,040 KB
testcase_12 AC 107 ms
53,980 KB
testcase_13 AC 107 ms
54,096 KB
testcase_14 AC 93 ms
52,160 KB
testcase_15 AC 107 ms
53,972 KB
testcase_16 AC 108 ms
53,856 KB
testcase_17 AC 104 ms
53,628 KB
testcase_18 AC 105 ms
54,168 KB
testcase_19 AC 109 ms
53,948 KB
testcase_20 AC 106 ms
53,964 KB
testcase_21 AC 109 ms
52,960 KB
testcase_22 AC 108 ms
53,956 KB
testcase_23 AC 112 ms
52,932 KB
testcase_24 AC 107 ms
53,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Ousho {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int x = s.nextInt(),y = s.nextInt(),x2 = s.nextInt(),y2 = s.nextInt();
		s.close();
		int count = 0;
		if(x == y){
			if(x2 == y2 && x > x2){
				count = x+1;
			}else{
				count = x;
			}
		}else{
			count = Math.min(x, y) + Math.abs(x-y);
		}
		System.out.println(count);
	}

}
0