結果

問題 No.998 Four Integers
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-02-08 09:48:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 710 bytes
コンパイル時間 4,183 ms
コンパイル使用メモリ 78,404 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2024-07-05 06:06:07
合計ジャッジ時間 8,322 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,992 KB
testcase_01 AC 119 ms
53,892 KB
testcase_02 AC 122 ms
54,068 KB
testcase_03 AC 123 ms
54,164 KB
testcase_04 AC 121 ms
54,068 KB
testcase_05 AC 124 ms
54,072 KB
testcase_06 AC 119 ms
53,912 KB
testcase_07 AC 119 ms
53,800 KB
testcase_08 AC 119 ms
53,996 KB
testcase_09 AC 121 ms
53,940 KB
testcase_10 AC 108 ms
52,968 KB
testcase_11 AC 118 ms
54,092 KB
testcase_12 AC 120 ms
54,068 KB
testcase_13 AC 122 ms
53,924 KB
testcase_14 AC 111 ms
52,620 KB
testcase_15 AC 125 ms
53,872 KB
testcase_16 AC 107 ms
52,656 KB
testcase_17 AC 125 ms
53,996 KB
testcase_18 AC 123 ms
54,096 KB
testcase_19 AC 126 ms
54,052 KB
testcase_20 AC 121 ms
53,976 KB
testcase_21 AC 119 ms
53,812 KB
testcase_22 AC 120 ms
53,776 KB
testcase_23 AC 107 ms
53,076 KB
testcase_24 AC 119 ms
54,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;

// https://yukicoder.me/problems/no/998
public class FourIntegers998 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scan
    Scanner sc = new Scanner(System.in);
    List<Integer> forIntegerList = new ArrayList<Integer>();
    for (int i = 0; i < 4; i++) {
      forIntegerList.add(Integer.parseInt(sc.next()));
    }
    Collections.sort(forIntegerList);
    for (int i = 0; i < 3; i++) {
      if (forIntegerList.get(i) + 1 != forIntegerList.get(i + 1)) {
        System.out.println("No");
        return;
      }
    }
    System.out.println("Yes");
  }
}
0