結果
問題 | No.99 ジャンピング駒 |
ユーザー | なお |
提出日時 | 2014-12-09 23:26:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 414 bytes |
コンパイル時間 | 1,641 ms |
コンパイル使用メモリ | 158,296 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-11 18:59:40 |
合計ジャッジ時間 | 2,395 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
5,248 KB |
testcase_01 | AC | 44 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define REP(i, n) for(int(i)=0;(i)<(n);++(i)) const int MOD = 1000000007; int main(){ int N; cin >> N; int c0 = 0,c1 = 0; REP(i,N){ int X; cin >> X; if(X % 2 == 0) c0++; else c1++; } int res = 0; res = abs(c1-c0) % 2; cout << res << endl; return 0; }