結果

問題 No.99 ジャンピング駒
ユーザー 37zigen37zigen
提出日時 2016-03-12 20:18:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 735 ms / 5,000 ms
コード長 572 bytes
コンパイル時間 3,370 ms
コンパイル使用メモリ 76,776 KB
実行使用メモリ 60,348 KB
最終ジャッジ日時 2024-09-25 03:24:30
合計ジャッジ時間 8,547 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 735 ms
59,956 KB
testcase_01 AC 681 ms
59,844 KB
testcase_02 AC 570 ms
59,788 KB
testcase_03 AC 676 ms
59,824 KB
testcase_04 AC 672 ms
60,348 KB
testcase_05 AC 676 ms
59,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package 練習;
import java.util.Date;
import java.util.Scanner;

public class main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		long exec_time=new Date().getTime();
		int n=sc.nextInt();
		int odd=0;
		int even=0;
		for(int i=0;i<n;i++){
			int x=sc.nextInt();
			if(Math.abs(x)%2==0){
				even++;
			}else if(Math.abs(x)%2==1){
				odd++;
			}else{
				System.err.println("Error");
				System.err.println("x%2="+x%2);
			}
		}
		System.out.println(Math.abs(even-odd));
		System.err.println(new Date().getTime()-exec_time+"ms");
	}
}

0