結果

問題 No.99 ジャンピング駒
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-04-27 21:48:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 239 ms / 5,000 ms
コード長 710 bytes
コンパイル時間 2,032 ms
コンパイル使用メモリ 75,008 KB
実行使用メモリ 59,692 KB
最終ジャッジ日時 2024-09-13 14:53:14
合計ジャッジ時間 4,179 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 227 ms
59,692 KB
testcase_01 AC 229 ms
49,596 KB
testcase_02 AC 239 ms
49,400 KB
testcase_03 AC 223 ms
49,680 KB
testcase_04 AC 235 ms
49,796 KB
testcase_05 AC 227 ms
50,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;


public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        int N = Integer.parseInt(reader.readLine());
        String[] inputs = reader.readLine().split(" ");
        int evenCounter = 0;
        int oddCounter = 0;

        for (int i = 0; i < N; i++) {
            if (Integer.parseInt(inputs[i]) % 2 == 0) {
                evenCounter += 1;
            } else {
                oddCounter += 1;
            }
        }

        System.out.println(Math.abs(evenCounter-oddCounter));
    }
}
0