結果

問題 No.99 ジャンピング駒
ユーザー nCk_cvnCk_cv
提出日時 2016-01-29 16:07:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 400 bytes
コンパイル時間 1,860 ms
コンパイル使用メモリ 74,300 KB
実行使用メモリ 48,224 KB
最終ジャッジ日時 2024-09-21 17:51:55
合計ジャッジ時間 7,000 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 603 ms
48,224 KB
testcase_01 AC 591 ms
48,128 KB
testcase_02 AC 617 ms
47,924 KB
testcase_03 AC 589 ms
47,824 KB
testcase_04 WA -
testcase_05 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int a = 0;
		int b = 0;
		for(int i = 0; i < N; i++) {
			if(sc.nextInt() % 2 == 0) a++;
			else b++;
		}
		if(a == 0 || b == 0) System.out.println(0);
		else {
			System.out.println(N - Math.min(a, b)*2);
		}
	}
}
0