結果

問題 No.998 Four Integers
ユーザー kurashitakazuhirokurashitakazuhiro
提出日時 2020-03-21 18:34:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 546 bytes
コンパイル時間 2,783 ms
コンパイル使用メモリ 78,576 KB
実行使用メモリ 41,852 KB
最終ジャッジ日時 2024-06-02 10:46:17
合計ジャッジ時間 6,111 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,616 KB
testcase_01 AC 119 ms
41,288 KB
testcase_02 AC 121 ms
41,136 KB
testcase_03 AC 123 ms
41,592 KB
testcase_04 AC 118 ms
41,044 KB
testcase_05 AC 122 ms
41,548 KB
testcase_06 AC 119 ms
41,452 KB
testcase_07 AC 122 ms
41,112 KB
testcase_08 AC 119 ms
41,172 KB
testcase_09 AC 119 ms
41,380 KB
testcase_10 AC 122 ms
41,676 KB
testcase_11 AC 118 ms
41,212 KB
testcase_12 AC 111 ms
41,220 KB
testcase_13 AC 121 ms
41,184 KB
testcase_14 AC 111 ms
40,128 KB
testcase_15 AC 118 ms
41,116 KB
testcase_16 AC 122 ms
41,852 KB
testcase_17 AC 122 ms
41,384 KB
testcase_18 AC 119 ms
41,220 KB
testcase_19 AC 118 ms
41,076 KB
testcase_20 AC 122 ms
41,560 KB
testcase_21 AC 124 ms
41,556 KB
testcase_22 AC 121 ms
41,228 KB
testcase_23 AC 121 ms
41,232 KB
testcase_24 AC 119 ms
41,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.Collections;
import java.util.stream.Collectors;

public class Main {

  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    ArrayList<Integer> list = new ArrayList<Integer>();
    for (int i = 0; i < 4; i++) {
      list.add(sc.nextInt());
    }
    Collections.sort(list);
    if (list.get(0) + 1 == list.get(1) && list.get(1) + 1 == list.get(2) && list.get(2) + 1 == list.get(3)) {
      System.out.println("Yes");
    } else {
      System.out.println("No");
    }
  }
}
0