結果

問題 No.99 ジャンピング駒
ユーザー spaciaspacia
提出日時 2016-01-02 08:57:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 214 ms / 5,000 ms
コード長 548 bytes
コンパイル時間 2,330 ms
コンパイル使用メモリ 75,232 KB
実行使用メモリ 50,256 KB
最終ジャッジ日時 2024-09-19 09:38:50
合計ジャッジ時間 3,911 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
49,080 KB
testcase_01 AC 208 ms
49,352 KB
testcase_02 AC 202 ms
49,128 KB
testcase_03 AC 214 ms
49,560 KB
testcase_04 AC 204 ms
49,320 KB
testcase_05 AC 207 ms
50,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main99 {
	
	public static void out (Object o) {
		System.out.println(o);
	}
		
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int cnt1 = 0 , cnt2 = 0;
		int n = Integer.parseInt(br.readLine());
		String[] line = br.readLine().split(" ");
		
		for (int i = 0; i < n; i++) {
			int m = Integer.parseInt(line[i]);
			if (m % 2 == 0)
				cnt1++;
			else
				cnt2++;
		}
		
		out(Math.abs(cnt1 - cnt2));
	}
}
0