結果

問題 No.99 ジャンピング駒
ユーザー おきょん.おきょん.
提出日時 2022-01-13 18:20:07
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 425 bytes
コンパイル時間 4,134 ms
コンパイル使用メモリ 261,288 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-28 15:42:51
合計ジャッジ時間 4,943 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
6,812 KB
testcase_01 AC 39 ms
6,940 KB
testcase_02 AC 39 ms
6,944 KB
testcase_03 AC 40 ms
6,944 KB
testcase_04 AC 38 ms
6,940 KB
testcase_05 AC 40 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.99 ジャンピング駒
#pragma GCC optimize("O3")
#pragma GCC target("avx")
#include <bits/stdc++.h>
#define rep(i ,n) for(int i=0;i<(int)(n);++i)

using namespace std;

signed main(){
    int n; cin >>n;
    vector<long long> x(n);
    rep( i , n ) cin >> x[i];
    int odd , even; 
    odd = even = 0;
    rep( i , n ){
        if( x[i] & 1) ++odd;
        else ++even;
    }
    cout << abs( odd - even ) << endl;
}
0