結果

問題 No.99 ジャンピング駒
ユーザー ffmm00ffmm00
提出日時 2015-06-20 01:16:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 555 ms / 5,000 ms
コード長 344 bytes
コンパイル時間 3,282 ms
コンパイル使用メモリ 75,172 KB
実行使用メモリ 59,544 KB
最終ジャッジ日時 2024-07-07 04:33:42
合計ジャッジ時間 7,185 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 519 ms
59,212 KB
testcase_01 AC 523 ms
59,544 KB
testcase_02 AC 536 ms
59,208 KB
testcase_03 AC 555 ms
59,428 KB
testcase_04 AC 505 ms
59,396 KB
testcase_05 AC 524 ms
59,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N99 {

	public static void main(String[] args) {

		Scanner sca = new Scanner(System.in);
		int n = sca.nextInt();
		int[] a = new int[n];
		int A = 0;

		for (int i = 0; i < n; i++) {
			a[i] = sca.nextInt();
			if (a[i] % 2 == 0)
				A++;
			else
				A--;
		}

		System.out.println(Math.abs(A));

	}

}
0