結果

問題 No.998 Four Integers
ユーザー nogisunnogisun
提出日時 2020-03-23 16:40:11
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 580 bytes
コンパイル時間 4,569 ms
コンパイル使用メモリ 75,316 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-12-26 10:01:49
合計ジャッジ時間 10,018 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
41,144 KB
testcase_01 AC 146 ms
40,288 KB
testcase_02 AC 164 ms
41,328 KB
testcase_03 AC 161 ms
41,336 KB
testcase_04 AC 159 ms
41,292 KB
testcase_05 AC 164 ms
41,432 KB
testcase_06 AC 150 ms
39,876 KB
testcase_07 AC 160 ms
41,224 KB
testcase_08 AC 162 ms
41,040 KB
testcase_09 AC 159 ms
41,080 KB
testcase_10 AC 157 ms
41,292 KB
testcase_11 AC 160 ms
41,128 KB
testcase_12 AC 163 ms
41,304 KB
testcase_13 AC 161 ms
41,108 KB
testcase_14 AC 161 ms
41,024 KB
testcase_15 AC 158 ms
41,124 KB
testcase_16 AC 154 ms
40,920 KB
testcase_17 AC 164 ms
41,032 KB
testcase_18 WA -
testcase_19 AC 163 ms
41,252 KB
testcase_20 AC 164 ms
41,572 KB
testcase_21 WA -
testcase_22 AC 156 ms
41,436 KB
testcase_23 WA -
testcase_24 AC 161 ms
41,148 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