結果

問題 No.99 ジャンピング駒
ユーザー kikagekikage
提出日時 2020-04-09 19:21:21
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 16 ms / 5,000 ms
コード長 228 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 22,784 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-13 20:17:34
合計ジャッジ時間 1,168 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
6,816 KB
testcase_01 AC 15 ms
6,940 KB
testcase_02 AC 15 ms
6,940 KB
testcase_03 AC 15 ms
6,944 KB
testcase_04 AC 14 ms
6,944 KB
testcase_05 AC 15 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:4:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    4 |     scanf("%d",&N);
      |     ~~~~~^~~~~~~~~
main.cpp:6:11: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |      scanf("%d",&x);
      |      ~~~~~^~~~~~~~~

ソースコード

diff #

#include <cstdio>
int main(){
    int N,odd=0,even=0;
    scanf("%d",&N);
    for(int i=0,x;i<N;i++){
     scanf("%d",&x);
     if(x%2==0)even++;else odd++;
    }
    printf("%d\n",(odd>=even?odd-even:even-odd));
    return 0;
}
0