結果

問題 No.998 Four Integers
ユーザー nogisunnogisun
提出日時 2020-03-23 16:41:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 580 bytes
コンパイル時間 2,776 ms
コンパイル使用メモリ 74,700 KB
実行使用メモリ 41,392 KB
最終ジャッジ日時 2024-06-07 23:10:15
合計ジャッジ時間 6,215 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
39,972 KB
testcase_01 AC 106 ms
41,288 KB
testcase_02 AC 107 ms
41,184 KB
testcase_03 AC 98 ms
40,016 KB
testcase_04 AC 107 ms
41,228 KB
testcase_05 AC 108 ms
41,392 KB
testcase_06 AC 112 ms
41,112 KB
testcase_07 AC 108 ms
41,144 KB
testcase_08 AC 101 ms
39,960 KB
testcase_09 AC 105 ms
40,060 KB
testcase_10 AC 109 ms
41,288 KB
testcase_11 AC 100 ms
40,156 KB
testcase_12 AC 108 ms
41,044 KB
testcase_13 AC 106 ms
41,152 KB
testcase_14 AC 99 ms
40,460 KB
testcase_15 AC 116 ms
41,160 KB
testcase_16 AC 95 ms
39,820 KB
testcase_17 AC 98 ms
40,144 KB
testcase_18 WA -
testcase_19 AC 107 ms
41,028 KB
testcase_20 AC 106 ms
40,824 KB
testcase_21 WA -
testcase_22 AC 97 ms
39,996 KB
testcase_23 WA -
testcase_24 AC 101 ms
40,292 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