結果

問題 No.99 ジャンピング駒
ユーザー tentententen
提出日時 2020-12-07 14:11:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 634 ms / 5,000 ms
コード長 423 bytes
コンパイル時間 1,776 ms
コンパイル使用メモリ 74,172 KB
実行使用メモリ 59,628 KB
最終ジャッジ日時 2024-09-17 13:53:30
合計ジャッジ時間 6,865 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 576 ms
59,300 KB
testcase_01 AC 482 ms
59,208 KB
testcase_02 AC 574 ms
59,628 KB
testcase_03 AC 561 ms
59,272 KB
testcase_04 AC 567 ms
59,596 KB
testcase_05 AC 634 ms
59,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int ev = 0;
        int od = 0;
        for (int i = 0; i < n; i++) {
            if (sc.nextInt() % 2 == 0) {
                ev++;
            } else {
                od++;
            }
        }
        System.out.println(Math.abs(ev - od));
    }
}
0