結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
40,980 KB
testcase_01 AC 160 ms
41,448 KB
testcase_02 AC 158 ms
41,372 KB
testcase_03 AC 160 ms
41,148 KB
testcase_04 AC 160 ms
41,432 KB
testcase_05 AC 162 ms
41,248 KB
testcase_06 AC 161 ms
41,016 KB
testcase_07 AC 166 ms
41,060 KB
testcase_08 AC 166 ms
41,052 KB
testcase_09 AC 163 ms
41,040 KB
testcase_10 AC 161 ms
41,284 KB
testcase_11 AC 160 ms
41,516 KB
testcase_12 AC 157 ms
41,372 KB
testcase_13 AC 162 ms
41,304 KB
testcase_14 AC 159 ms
41,432 KB
testcase_15 AC 157 ms
41,396 KB
testcase_16 AC 159 ms
41,164 KB
testcase_17 AC 159 ms
41,388 KB
testcase_18 WA -
testcase_19 AC 162 ms
41,340 KB
testcase_20 AC 160 ms
41,432 KB
testcase_21 WA -
testcase_22 AC 161 ms
41,424 KB
testcase_23 WA -
testcase_24 AC 159 ms
41,220 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