結果
| 問題 | No.29 パワーアップ |
| コンテスト | |
| ユーザー |
LayCurse
|
| 提出日時 | 2014-11-01 23:53:46 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 216 bytes |
| 記録 | |
| コンパイル時間 | 1,102 ms |
| コンパイル使用メモリ | 155,064 KB |
| 実行使用メモリ | 7,716 KB |
| 最終ジャッジ日時 | 2025-10-24 20:50:18 |
| 合計ジャッジ時間 | 1,899 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / 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");
| ~~~~~^~~~~~~
ソースコード
#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;
}
LayCurse