結果

問題 No.99 ジャンピング駒
ユーザー koukonkokoukonko
提出日時 2015-12-11 17:50:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 231 ms / 5,000 ms
コード長 759 bytes
コンパイル時間 2,141 ms
コンパイル使用メモリ 75,108 KB
実行使用メモリ 50,076 KB
最終ジャッジ日時 2024-09-15 08:00:01
合計ジャッジ時間 4,616 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 226 ms
49,428 KB
testcase_01 AC 228 ms
50,076 KB
testcase_02 AC 231 ms
49,372 KB
testcase_03 AC 231 ms
49,408 KB
testcase_04 AC 216 ms
49,676 KB
testcase_05 AC 226 ms
49,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try {
			int count = Integer.parseInt(buff.readLine());
			String[] box = buff.readLine().split(" ");
			int[] posi = new int[count];

			int odd = 0, even = 0;

			for(int i = 0; i < count; ++i){
				posi[i] = Integer.parseInt(box[i]);
				if(posi[i] % 2 == 0){
					even++;
				}else{
					odd++;
				}
			}

			System.out.println(Math.abs(odd-even));

		} catch (NumberFormatException e) {
			e.getStackTrace();
		} catch (IOException e) {
			e.getStackTrace();
		} catch (Exception e) {
			e.getStackTrace();
		}
	}
}
0