結果

問題 No.208 王将
ユーザー shinwisteriashinwisteria
提出日時 2017-04-02 12:20:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 400 bytes
コンパイル時間 2,705 ms
コンパイル使用メモリ 75,440 KB
実行使用メモリ 53,720 KB
最終ジャッジ日時 2024-07-07 23:58:52
合計ジャッジ時間 6,311 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
41,240 KB
testcase_01 AC 94 ms
41,316 KB
testcase_02 AC 105 ms
41,368 KB
testcase_03 AC 97 ms
41,288 KB
testcase_04 AC 106 ms
41,176 KB
testcase_05 AC 108 ms
41,672 KB
testcase_06 WA -
testcase_07 AC 105 ms
41,132 KB
testcase_08 AC 105 ms
39,712 KB
testcase_09 AC 110 ms
41,368 KB
testcase_10 AC 118 ms
41,356 KB
testcase_11 AC 111 ms
41,124 KB
testcase_12 AC 96 ms
41,268 KB
testcase_13 AC 98 ms
41,236 KB
testcase_14 AC 96 ms
41,184 KB
testcase_15 AC 97 ms
41,456 KB
testcase_16 AC 139 ms
41,496 KB
testcase_17 AC 106 ms
41,112 KB
testcase_18 AC 104 ms
41,212 KB
testcase_19 AC 105 ms
41,456 KB
testcase_20 AC 110 ms
41,236 KB
testcase_21 AC 109 ms
41,336 KB
testcase_22 AC 98 ms
41,528 KB
testcase_23 AC 109 ms
41,192 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

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){
				count = x+1;
			}else{
				count = x;
			}
		}else{
			count = Math.min(x, y) + Math.abs(x-y);
		}
		System.out.println(count);
	}

}
0