結果

問題 No.208 王将
ユーザー 37zigen37zigen
提出日時 2020-02-18 17:23:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 556 bytes
コンパイル時間 2,283 ms
コンパイル使用メモリ 74,972 KB
実行使用メモリ 54,140 KB
最終ジャッジ日時 2024-10-06 15:39:33
合計ジャッジ時間 6,767 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,084 KB
testcase_01 AC 135 ms
54,128 KB
testcase_02 AC 127 ms
53,776 KB
testcase_03 AC 135 ms
53,912 KB
testcase_04 AC 131 ms
53,888 KB
testcase_05 AC 130 ms
53,876 KB
testcase_06 AC 131 ms
54,096 KB
testcase_07 AC 131 ms
53,876 KB
testcase_08 AC 132 ms
54,116 KB
testcase_09 AC 135 ms
53,764 KB
testcase_10 AC 131 ms
53,700 KB
testcase_11 AC 132 ms
53,916 KB
testcase_12 AC 131 ms
53,656 KB
testcase_13 AC 118 ms
52,444 KB
testcase_14 AC 131 ms
53,820 KB
testcase_15 AC 135 ms
53,968 KB
testcase_16 AC 132 ms
54,116 KB
testcase_17 AC 133 ms
54,104 KB
testcase_18 AC 132 ms
53,880 KB
testcase_19 AC 132 ms
53,896 KB
testcase_20 AC 131 ms
54,140 KB
testcase_21 AC 133 ms
53,876 KB
testcase_22 AC 133 ms
53,884 KB
testcase_23 AC 132 ms
53,880 KB
testcase_24 AC 132 ms
53,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.Scanner;

class Main {
	public static void main(String[] args) throws Exception {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		long x=sc.nextLong();
		long y=sc.nextLong();
		long x1=sc.nextLong();
		long y1=sc.nextLong();
		long ans=Math.min(x, y)+Math.max(x, y)-Math.min(x, y);
		if(x==y&&x>x1&&y>y1&&x1==y1) {
			++ans;
		}
		System.out.println(ans);
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
	
}
0