結果

問題 No.99 ジャンピング駒
ユーザー fal_rndfal_rnd
提出日時 2018-04-18 08:56:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 660 ms / 5,000 ms
コード長 381 bytes
コンパイル時間 2,369 ms
コンパイル使用メモリ 79,444 KB
実行使用メモリ 60,000 KB
最終ジャッジ日時 2024-06-27 04:26:49
合計ジャッジ時間 7,180 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 653 ms
59,996 KB
testcase_01 AC 660 ms
59,992 KB
testcase_02 AC 649 ms
59,912 KB
testcase_03 AC 647 ms
60,000 KB
testcase_04 AC 637 ms
59,872 KB
testcase_05 AC 580 ms
59,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;
class Main {
    static Scanner s=new Scanner(System.in);
    static int gInt(){return Integer.parseInt(s.next());}
    public static void main(String[]$){
        int n=gInt();
        int[]a={0,0};
        IntStream.range(0,n).map(i->gInt()+1000000000).forEach(o->++a[o%2]);
        System.out.println(Math.abs(a[0]-a[1]));
    }
}
0