結果

問題 No.998 Four Integers
ユーザー devtatuodevtatuo
提出日時 2020-05-05 07:58:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 72 ms / 1,000 ms
コード長 1,229 bytes
コンパイル時間 2,424 ms
コンパイル使用メモリ 93,272 KB
実行使用メモリ 38,160 KB
最終ジャッジ日時 2024-06-25 23:36:44
合計ジャッジ時間 4,991 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
37,484 KB
testcase_01 AC 62 ms
37,960 KB
testcase_02 AC 59 ms
37,876 KB
testcase_03 AC 59 ms
37,624 KB
testcase_04 AC 62 ms
37,864 KB
testcase_05 AC 61 ms
37,724 KB
testcase_06 AC 61 ms
38,160 KB
testcase_07 AC 61 ms
38,096 KB
testcase_08 AC 61 ms
37,620 KB
testcase_09 AC 60 ms
37,864 KB
testcase_10 AC 62 ms
38,012 KB
testcase_11 AC 61 ms
37,968 KB
testcase_12 AC 61 ms
37,848 KB
testcase_13 AC 61 ms
37,484 KB
testcase_14 AC 61 ms
37,996 KB
testcase_15 AC 61 ms
37,800 KB
testcase_16 AC 61 ms
37,932 KB
testcase_17 AC 62 ms
37,944 KB
testcase_18 AC 60 ms
37,848 KB
testcase_19 AC 58 ms
37,516 KB
testcase_20 AC 60 ms
37,960 KB
testcase_21 AC 62 ms
37,512 KB
testcase_22 AC 72 ms
37,908 KB
testcase_23 AC 60 ms
37,940 KB
testcase_24 AC 60 ms
37,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.stream.Stream;

public class Main {

    public static void main(String[] args) throws Exception {

        InputStreamReader is = new InputStreamReader(System.in);
        BufferedReader reader = new BufferedReader(is);

        List<String> mylist = new ArrayList<>();

        // 標準入力からの値を変数strinputに代入
        String strinput = reader.readLine();

        while (strinput != null) {

            mylist.add(strinput);
            strinput = reader.readLine();

        }

        String arr[] = mylist.get(0).split(" ");
        Stream<String> stream = Arrays.stream(arr);
        int arr02[] = stream.mapToInt(Integer::parseInt).toArray();
        int l = arr.length;
        Arrays.sort(arr02);
        Boolean chkflg = true;
        for (int i = 0; i < l - 1; i++) {
            int a = Integer.valueOf(arr02[i]);
            int b = Integer.valueOf(arr02[i + 1]);

            if (b - a != 1) {
                chkflg = false;
                break;
            }

        }
        System.out.println(chkflg ? "Yes" : "No");
    }

}
0