結果

問題 No.208 王将
ユーザー uafr_csuafr_cs
提出日時 2015-05-15 22:41:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 490 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 75,252 KB
実行使用メモリ 54,836 KB
最終ジャッジ日時 2024-10-09 16:30:42
合計ジャッジ時間 5,980 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,912 KB
testcase_01 AC 130 ms
54,240 KB
testcase_02 AC 128 ms
54,176 KB
testcase_03 AC 128 ms
54,036 KB
testcase_04 AC 123 ms
54,148 KB
testcase_05 AC 125 ms
53,868 KB
testcase_06 AC 131 ms
54,528 KB
testcase_07 AC 128 ms
54,080 KB
testcase_08 AC 130 ms
54,176 KB
testcase_09 AC 133 ms
54,164 KB
testcase_10 AC 128 ms
53,944 KB
testcase_11 AC 129 ms
54,528 KB
testcase_12 AC 126 ms
53,960 KB
testcase_13 AC 129 ms
54,152 KB
testcase_14 AC 127 ms
54,188 KB
testcase_15 AC 128 ms
54,068 KB
testcase_16 AC 128 ms
54,204 KB
testcase_17 AC 127 ms
54,040 KB
testcase_18 AC 128 ms
53,976 KB
testcase_19 AC 121 ms
54,184 KB
testcase_20 AC 114 ms
52,916 KB
testcase_21 AC 125 ms
54,176 KB
testcase_22 AC 133 ms
53,904 KB
testcase_23 AC 129 ms
54,836 KB
testcase_24 AC 130 ms
54,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final long x = sc.nextLong();
		final long y = sc.nextLong();
		final long x2 = sc.nextLong();
		final long y2 = sc.nextLong();
		
		final long opt = x + y - Math.min(x, y);
		
		if(x == y && x2 == y2 && x2 < x && y2 < y){
			System.out.println(opt + 1);
		}else{
			System.out.println(opt);
		}
	}
	
}
0