結果

問題 No.99 ジャンピング駒
コンテスト
ユーザー testestest
提出日時 2015-08-05 15:01:40
言語 C90
(gcc 12.4.0)
コンパイル:
gcc-12 -O2 -std=c90 -DONLINE_JUDGE -o a.out _filename_ -lm
実行:
./a.out
結果
AC  
実行時間 17 ms / 5,000 ms
コード長 151 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 171 ms
コンパイル使用メモリ 29,128 KB
最終ジャッジ日時 2026-02-23 18:57:41
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 6
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:5:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 | scanf("%d",&n);
      | ^~~~~~~~~~~~~~

ソースコード

diff #
raw source code

#include <stdio.h>
#include <math.h>
int main(){
int a,n,s=0;
scanf("%d",&n);
while(n--)scanf("%d",&a)&&a%2?s++:s--;
printf("%d",s>0?s:-s);
return 0;
}
0