結果

問題 No.99 ジャンピング駒
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-14 00:56:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 625 ms / 5,000 ms
コード長 395 bytes
コンパイル時間 1,881 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 59,684 KB
最終ジャッジ日時 2024-11-25 22:08:31
合計ジャッジ時間 7,240 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 605 ms
59,488 KB
testcase_01 AC 625 ms
59,556 KB
testcase_02 AC 579 ms
59,524 KB
testcase_03 AC 615 ms
59,180 KB
testcase_04 AC 578 ms
59,448 KB
testcase_05 AC 600 ms
59,684 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 odd =0;
        int even=0;
        for(int i=0; i<N; i++){
            int X = sc.nextInt();
            if(X%2==0){even++;}else{odd++;}
        }
        int r = Math.abs(odd-even);
        System.out.println(r);
    }
}
0