結果

問題 No.29 パワーアップ
ユーザー LayCurse
提出日時 2014-11-01 23:53:46
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 216 bytes
コンパイル時間 1,586 ms
コンパイル使用メモリ 156,748 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-30 16:09:55
合計ジャッジ時間 2,337 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:6:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |   scanf("%*d");
      |   ~~~~~^~~~~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int mask, i, k, res;
int main(){
  scanf("%*d");
  while(~scanf("%d",&i)) k++, mask ^= 1<<i;
  printf("%d\n",k/2 - (__builtin_popcount(mask)+2)/4);
  return 0;
}
0