結果

問題 No.998 Four Integers
ユーザー pacicficdolphinpacicficdolphin
提出日時 2020-03-08 12:32:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 436 bytes
コンパイル時間 1,964 ms
コンパイル使用メモリ 75,112 KB
実行使用メモリ 41,792 KB
最終ジャッジ日時 2024-05-08 01:47:37
合計ジャッジ時間 6,038 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,360 KB
testcase_01 AC 126 ms
41,516 KB
testcase_02 AC 128 ms
41,536 KB
testcase_03 AC 127 ms
41,356 KB
testcase_04 AC 128 ms
41,452 KB
testcase_05 AC 126 ms
41,556 KB
testcase_06 AC 131 ms
41,340 KB
testcase_07 AC 124 ms
41,552 KB
testcase_08 AC 126 ms
41,580 KB
testcase_09 AC 128 ms
41,376 KB
testcase_10 AC 126 ms
41,380 KB
testcase_11 AC 129 ms
41,260 KB
testcase_12 AC 128 ms
41,528 KB
testcase_13 AC 131 ms
41,352 KB
testcase_14 AC 127 ms
41,712 KB
testcase_15 AC 126 ms
41,616 KB
testcase_16 AC 116 ms
41,632 KB
testcase_17 AC 127 ms
41,424 KB
testcase_18 AC 130 ms
41,580 KB
testcase_19 AC 127 ms
41,792 KB
testcase_20 AC 130 ms
41,684 KB
testcase_21 AC 128 ms
41,448 KB
testcase_22 AC 134 ms
41,276 KB
testcase_23 AC 131 ms
41,668 KB
testcase_24 AC 115 ms
41,664 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