結果

問題 No.1285 ゴミ捨て
ユーザー AsahiAsahi
提出日時 2023-02-09 05:20:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 726 bytes
コンパイル時間 1,967 ms
コンパイル使用メモリ 75,728 KB
実行使用メモリ 59,816 KB
最終ジャッジ日時 2024-07-06 12:01:09
合計ジャッジ時間 11,502 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,772 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 104 ms
53,612 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 557 ms
59,448 KB
testcase_08 WA -
testcase_09 AC 442 ms
58,500 KB
testcase_10 AC 550 ms
59,248 KB
testcase_11 AC 527 ms
59,532 KB
testcase_12 AC 475 ms
59,400 KB
testcase_13 AC 452 ms
59,384 KB
testcase_14 AC 544 ms
59,248 KB
testcase_15 AC 502 ms
59,816 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 414 ms
59,340 KB
testcase_20 WA -
testcase_21 AC 335 ms
59,172 KB
testcase_22 AC 549 ms
59,712 KB
testcase_23 AC 578 ms
59,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
import java.util.stream.Stream;

public class Main{
    static  PrintWriter output;
    static  Scanner sc;
    static int cnt ;
    static void solve() {
        int n = sc.nextInt();
        int [] cup = new int[n];
        for(int i=0;i<n;i++) cup[i] = sc.nextInt();
        Arrays.sort(cup);
        int ans = 1;
        for(int i=0;i<n-1;i++) {
            if(cup[i] + 1 < cup[i+1]) {
                ans = 2;
            }
        }
        output.print(ans);
    }

    public static void main(String[] args) throws IOException{
        output = new PrintWriter(System.out);
        sc = new Scanner(System.in);
        solve();
        output.flush();
    }
}
0