結果

問題 No.208 王将
ユーザー k_kadorak_kadora
提出日時 2015-06-14 20:45:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 388 bytes
コンパイル時間 3,477 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-10-09 16:25:36
合計ジャッジ時間 7,928 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,896 KB
testcase_01 AC 135 ms
54,132 KB
testcase_02 AC 138 ms
54,208 KB
testcase_03 AC 141 ms
53,904 KB
testcase_04 AC 135 ms
54,360 KB
testcase_05 AC 136 ms
54,156 KB
testcase_06 AC 137 ms
54,008 KB
testcase_07 AC 136 ms
54,116 KB
testcase_08 AC 138 ms
53,980 KB
testcase_09 AC 136 ms
54,208 KB
testcase_10 AC 136 ms
54,020 KB
testcase_11 AC 139 ms
54,188 KB
testcase_12 AC 134 ms
54,200 KB
testcase_13 AC 135 ms
54,116 KB
testcase_14 AC 137 ms
54,180 KB
testcase_15 AC 137 ms
54,124 KB
testcase_16 AC 137 ms
54,068 KB
testcase_17 AC 136 ms
54,392 KB
testcase_18 AC 137 ms
54,220 KB
testcase_19 AC 139 ms
54,164 KB
testcase_20 AC 137 ms
54,180 KB
testcase_21 AC 137 ms
54,432 KB
testcase_22 AC 137 ms
54,036 KB
testcase_23 AC 137 ms
54,092 KB
testcase_24 AC 134 ms
54,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Yuki208{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int x,y,x1,y1;
		x = sc.nextInt();
		y = sc.nextInt();
		x1 = sc.nextInt();
		y1 = sc.nextInt();
		if(x == y && x1 == y1 && x1 <x){
			System.out.println(x+1);
		}else{
			if(x> y){
				System.out.println(x);
			}else{
				System.out.println(y);
			}
		}
	}
}
0