結果

問題 No.99 ジャンピング駒
ユーザー Yang33
提出日時 2016-01-06 15:36:49
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 243 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 53,848 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-19 12:16:16
合計ジャッジ時間 1,338 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
int main(void)
{
	int i, n, ans = 0;
	long x;

	cin >> n;
	for (i = 0; i < n; i++) {
		cin >> x;
		if (x % 2 == 0)ans++;
		else ans--;
	}

	if (ans < 0)ans = -1 * ans;
	cout << ans << endl;

	return 0;
}
0