結果

問題 No.99 ジャンピング駒
ユーザー mits58mits58
提出日時 2016-07-09 17:02:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 592 ms / 5,000 ms
コード長 314 bytes
コンパイル時間 3,498 ms
コンパイル使用メモリ 74,052 KB
実行使用メモリ 48,416 KB
最終ジャッジ日時 2024-10-13 09:36:31
合計ジャッジ時間 8,207 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 585 ms
48,364 KB
testcase_01 AC 571 ms
48,016 KB
testcase_02 AC 592 ms
48,028 KB
testcase_03 AC 587 ms
48,328 KB
testcase_04 AC 577 ms
48,416 KB
testcase_05 AC 555 ms
48,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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