結果
問題 | No.99 ジャンピング駒 |
ユーザー |
![]() |
提出日時 | 2021-02-24 02:11:41 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 44 ms / 5,000 ms |
コード長 | 235 bytes |
コンパイル時間 | 1,548 ms |
コンパイル使用メモリ | 168,276 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 21:21:21 |
合計ジャッジ時間 | 3,042 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 6 |
ソースコード
#include <bits/stdc++.h>using namespace std;int main() {int N;cin >> N;vector<int> A(2);for (int i = 0; i < N; i++) {int64_t X;cin >> X;A.at(abs(X % 2))++;}cout << abs(A.at(0) - A.at(1)) << endl;}