結果

問題 No.1285 ゴミ捨て
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-10 09:53:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 607 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 3,094 ms
コンパイル使用メモリ 75,188 KB
実行使用メモリ 59,880 KB
最終ジャッジ日時 2024-11-28 22:01:57
合計ジャッジ時間 12,506 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
53,772 KB
testcase_01 AC 115 ms
54,124 KB
testcase_02 AC 104 ms
52,488 KB
testcase_03 AC 120 ms
54,232 KB
testcase_04 AC 114 ms
54,156 KB
testcase_05 AC 115 ms
53,020 KB
testcase_06 AC 123 ms
54,284 KB
testcase_07 AC 594 ms
59,880 KB
testcase_08 AC 198 ms
57,120 KB
testcase_09 AC 439 ms
59,580 KB
testcase_10 AC 591 ms
59,552 KB
testcase_11 AC 577 ms
59,848 KB
testcase_12 AC 430 ms
58,396 KB
testcase_13 AC 492 ms
59,492 KB
testcase_14 AC 578 ms
59,696 KB
testcase_15 AC 543 ms
59,452 KB
testcase_16 AC 304 ms
59,068 KB
testcase_17 AC 301 ms
58,956 KB
testcase_18 AC 312 ms
59,284 KB
testcase_19 AC 434 ms
59,548 KB
testcase_20 AC 297 ms
58,944 KB
testcase_21 AC 366 ms
59,268 KB
testcase_22 AC 602 ms
59,788 KB
testcase_23 AC 607 ms
59,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class HelloWorld {

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

	    	Scanner sc = new Scanner(System.in);
	    	int n = sc.nextInt();
	    	int[] ai = new int[n];
	    	for (int i = 0; i < n; i ++) {
	    		ai[i] = sc.nextInt();
	    	}
	    	sc.close();

	    	Arrays.sort(ai);
	    	int count = 1;
	    	int mod = ai[0] % 2;
	    	for (int i = 1; i < n; i ++ ) {

	    		if (ai[i] % 2 != mod && ai[i] - 1 <= ai[i - 1]) {
	    			count = 2;
	    		}
	    		mod = ai[i] % 2;
	    	}

	    	System.out.println(count);
	    	}

	    }
0