結果

問題 No.998 Four Integers
ユーザー pacicficdolphinpacicficdolphin
提出日時 2020-03-08 12:30:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 432 bytes
コンパイル時間 2,144 ms
コンパイル使用メモリ 74,420 KB
実行使用メモリ 56,064 KB
最終ジャッジ日時 2024-11-07 00:09:17
合計ジャッジ時間 6,501 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,120 KB
testcase_01 AC 134 ms
41,376 KB
testcase_02 AC 135 ms
41,628 KB
testcase_03 AC 134 ms
41,256 KB
testcase_04 AC 133 ms
41,208 KB
testcase_05 AC 132 ms
41,012 KB
testcase_06 AC 135 ms
41,432 KB
testcase_07 AC 132 ms
41,856 KB
testcase_08 AC 133 ms
41,240 KB
testcase_09 AC 130 ms
41,140 KB
testcase_10 AC 133 ms
41,288 KB
testcase_11 AC 134 ms
41,140 KB
testcase_12 AC 134 ms
41,652 KB
testcase_13 AC 134 ms
40,884 KB
testcase_14 AC 134 ms
41,148 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 141 ms
41,316 KB
testcase_18 AC 139 ms
41,200 KB
testcase_19 AC 135 ms
41,008 KB
testcase_20 WA -
testcase_21 AC 134 ms
41,104 KB
testcase_22 AC 133 ms
41,228 KB
testcase_23 AC 135 ms
41,204 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
	
		int [] Y = new int[3]; 

		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