結果

問題 No.99 ジャンピング駒
ユーザー Mcpu3Mcpu3
提出日時 2018-06-28 19:07:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 686 ms / 5,000 ms
コード長 286 bytes
コンパイル時間 2,121 ms
コンパイル使用メモリ 73,972 KB
実行使用メモリ 59,660 KB
最終ジャッジ日時 2024-06-30 23:32:03
合計ジャッジ時間 7,207 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 686 ms
59,348 KB
testcase_01 AC 666 ms
59,188 KB
testcase_02 AC 576 ms
59,192 KB
testcase_03 AC 648 ms
59,448 KB
testcase_04 AC 644 ms
59,660 KB
testcase_05 AC 650 ms
59,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no99{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int n=stdIn.nextInt(),o=0,e=0,t,i;
		for(i=0;i<n;i++) {
			t=stdIn.nextInt();
			if(t%2==0)e++;
			else o++;
		}
		System.out.print(o>e?o-e:e-o);
	}
}
0