結果

問題 No.998 Four Integers
ユーザー konataro15konataro15
提出日時 2020-03-24 20:25:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 1,000 ms
コード長 353 bytes
コンパイル時間 1,992 ms
コンパイル使用メモリ 74,300 KB
実行使用メモリ 41,628 KB
最終ジャッジ日時 2024-06-10 06:16:51
合計ジャッジ時間 5,612 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,276 KB
testcase_01 AC 102 ms
40,300 KB
testcase_02 AC 117 ms
41,500 KB
testcase_03 AC 103 ms
40,260 KB
testcase_04 AC 112 ms
41,428 KB
testcase_05 AC 103 ms
41,168 KB
testcase_06 AC 112 ms
41,524 KB
testcase_07 AC 101 ms
40,484 KB
testcase_08 AC 108 ms
41,236 KB
testcase_09 AC 103 ms
41,600 KB
testcase_10 AC 113 ms
41,128 KB
testcase_11 AC 110 ms
41,344 KB
testcase_12 AC 118 ms
41,384 KB
testcase_13 AC 113 ms
41,268 KB
testcase_14 AC 98 ms
40,428 KB
testcase_15 AC 107 ms
41,368 KB
testcase_16 AC 107 ms
41,284 KB
testcase_17 AC 96 ms
40,216 KB
testcase_18 AC 110 ms
41,628 KB
testcase_19 AC 105 ms
41,148 KB
testcase_20 AC 112 ms
41,372 KB
testcase_21 AC 109 ms
41,256 KB
testcase_22 AC 105 ms
41,472 KB
testcase_23 AC 107 ms
41,268 KB
testcase_24 AC 98 ms
40,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
	    int [] in = new int [4];
	    for(int i=0;i<4;i++){in[i] = sc.nextInt();}
        Arrays.sort(in);
		if(in[3]-in[2]==1 && in[2]-in[1]==1 && in[1]-in[0]==1){System.out.println("Yes");}
        else{System.out.println("No");}
	}
}
0