結果
問題 |
No.99 ジャンピング駒
|
ユーザー |
|
提出日時 | 2018-04-23 16:42:20 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 45 ms / 5,000 ms |
コード長 | 265 bytes |
コンパイル時間 | 543 ms |
コンパイル使用メモリ | 62,976 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-27 14:07:19 |
合計ジャッジ時間 | 1,417 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 6 |
ソースコード
#include<iostream> using namespace std; int main(){ int odd = 0, even = 0, n, x; cin >> n; while(n-- > 0){ cin >> x; if(abs(x) % 2 == 0) even++; else odd++; } cout << abs(even-odd) << endl; return 0; }