結果

問題 No.998 Four Integers
ユーザー pacicficdolphinpacicficdolphin
提出日時 2020-03-08 12:32:42
言語 Java
(openjdk 23)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 436 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 74,660 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-11-30 23:20:43
合計ジャッジ時間 5,578 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,156 KB
testcase_01 AC 117 ms
41,240 KB
testcase_02 AC 122 ms
41,308 KB
testcase_03 AC 116 ms
41,004 KB
testcase_04 AC 125 ms
41,448 KB
testcase_05 AC 116 ms
40,312 KB
testcase_06 AC 104 ms
40,156 KB
testcase_07 AC 118 ms
41,456 KB
testcase_08 AC 107 ms
40,868 KB
testcase_09 AC 116 ms
41,176 KB
testcase_10 AC 114 ms
41,036 KB
testcase_11 AC 118 ms
41,128 KB
testcase_12 AC 119 ms
40,192 KB
testcase_13 AC 105 ms
40,484 KB
testcase_14 AC 113 ms
41,304 KB
testcase_15 AC 106 ms
40,332 KB
testcase_16 AC 116 ms
41,228 KB
testcase_17 AC 103 ms
40,280 KB
testcase_18 AC 117 ms
40,176 KB
testcase_19 AC 114 ms
40,076 KB
testcase_20 AC 118 ms
41,316 KB
testcase_21 AC 108 ms
40,804 KB
testcase_22 AC 122 ms
41,352 KB
testcase_23 AC 120 ms
41,340 KB
testcase_24 AC 106 ms
40,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {

		int [] Y = new int[4]; 
	
		Scanner scanner= new Scanner(System.in);
		
	
		 
		for(int i=0;i<Y.length;i++) {
			Y[i]=scanner.nextInt();
		}
			
	
		 Arrays.sort(Y);
		
	
		for(int i=0 ; i<Y.length-1 ; i++ ) {
			if(Y[i+1]-Y[i] !=1) {
				System.out.println("No");
				return;
			}
		}
		System.out.println("Yes");
	}
}
0