結果
問題 |
No.99 ジャンピング駒
|
ユーザー |
![]() |
提出日時 | 2017-09-20 21:36:28 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 15 ms / 5,000 ms |
コード長 | 417 bytes |
コンパイル時間 | 869 ms |
コンパイル使用メモリ | 68,480 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 09:20:41 |
合計ジャッジ時間 | 1,766 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 6 |
ソースコード
#include <iostream> #include <iomanip> typedef long long ll; int main(void) { std::cin.tie(0); std::ios::sync_with_stdio(false); std::cout << std::fixed << std::setprecision(8); ll n; std::cin >> n; ll n_odd = 0, n_even = 0; for (ll i = 0; i != n; ++i) { ll xi; std::cin >> xi; (abs(xi) % 2 != 0 ? n_odd : n_even)++; } std::cout << std::abs(n_odd - n_even) << std::endl; return 0; }