結果

問題 No.998 Four Integers
ユーザー nogisunnogisun
提出日時 2020-03-23 16:40:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 580 bytes
コンパイル時間 3,053 ms
コンパイル使用メモリ 75,404 KB
実行使用メモリ 41,780 KB
最終ジャッジ日時 2024-06-07 23:08:27
合計ジャッジ時間 6,963 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
41,212 KB
testcase_01 AC 106 ms
41,304 KB
testcase_02 AC 95 ms
40,144 KB
testcase_03 AC 97 ms
40,156 KB
testcase_04 AC 93 ms
39,544 KB
testcase_05 AC 113 ms
41,028 KB
testcase_06 AC 104 ms
40,104 KB
testcase_07 AC 105 ms
40,412 KB
testcase_08 AC 105 ms
40,944 KB
testcase_09 AC 96 ms
40,324 KB
testcase_10 AC 107 ms
40,848 KB
testcase_11 AC 106 ms
40,988 KB
testcase_12 AC 97 ms
39,844 KB
testcase_13 AC 113 ms
41,304 KB
testcase_14 AC 107 ms
40,224 KB
testcase_15 AC 107 ms
40,224 KB
testcase_16 AC 108 ms
41,112 KB
testcase_17 AC 107 ms
41,512 KB
testcase_18 WA -
testcase_19 AC 93 ms
39,552 KB
testcase_20 AC 101 ms
39,608 KB
testcase_21 WA -
testcase_22 AC 106 ms
41,080 KB
testcase_23 WA -
testcase_24 AC 95 ms
39,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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