結果

問題 No.998 Four Integers
ユーザー 37zigen37zigen
提出日時 2020-02-28 21:26:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 501 bytes
コンパイル時間 2,140 ms
コンパイル使用メモリ 75,328 KB
実行使用メモリ 41,804 KB
最終ジャッジ日時 2024-05-08 01:33:39
合計ジャッジ時間 6,430 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,396 KB
testcase_01 AC 136 ms
41,452 KB
testcase_02 AC 133 ms
41,676 KB
testcase_03 AC 135 ms
41,240 KB
testcase_04 AC 133 ms
41,560 KB
testcase_05 AC 134 ms
41,672 KB
testcase_06 AC 132 ms
41,796 KB
testcase_07 AC 133 ms
41,804 KB
testcase_08 AC 138 ms
41,760 KB
testcase_09 AC 133 ms
41,092 KB
testcase_10 AC 133 ms
41,524 KB
testcase_11 AC 131 ms
41,288 KB
testcase_12 AC 130 ms
41,164 KB
testcase_13 AC 133 ms
41,268 KB
testcase_14 AC 135 ms
41,480 KB
testcase_15 AC 132 ms
41,444 KB
testcase_16 AC 131 ms
41,304 KB
testcase_17 AC 132 ms
41,392 KB
testcase_18 AC 132 ms
41,420 KB
testcase_19 AC 136 ms
41,748 KB
testcase_20 AC 132 ms
41,220 KB
testcase_21 AC 132 ms
41,196 KB
testcase_22 AC 133 ms
41,272 KB
testcase_23 AC 133 ms
41,480 KB
testcase_24 AC 129 ms
41,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
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);
		int[] a=new int[4];
		for(int i=0;i<a.length;++i)a[i]=sc.nextInt();
		Arrays.sort(a);
		boolean flag=true;
		for(int i=0;i+1<a.length;++i)flag&=a[i]+1==a[i+1];
		System.out.println(flag?"Yes":"No");
	}

	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0