結果
問題 | No.99 ジャンピング駒 |
ユーザー | umashika |
提出日時 | 2016-02-24 22:29:23 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 546 bytes |
コンパイル時間 | 108 ms |
コンパイル使用メモリ | 20,480 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 13:24:36 |
合計ジャッジ時間 | 716 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 15 ms
6,812 KB |
testcase_01 | AC | 15 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:8:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | scanf("%lld",&n); | ^~~~~~~~~~~~~~~~ main.c:10:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | scanf("%lld",&x[i]); | ^~~~~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h> int main() { long long int n; long long int x[100000]; long long int i; long long int count=0; scanf("%lld",&n); for(i=0;i<n;i++){ scanf("%lld",&x[i]); if(x[i]%2==0){count++;}//偶数ならカウント } //偶数個の点が与えられているなら、偶数、奇数の数がそれぞれ半分であればよい if(n%2==0){ //if(count*2==n){printf("0\n");} //else{printf("1\n");} printf("0\n"); } //奇数ならその時点でアウト else{ printf("1\n"); } return 0; }