結果
| 問題 | No.29 パワーアップ |
| コンテスト | |
| ユーザー |
LayCurse
|
| 提出日時 | 2014-11-01 23:53:46 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| + 300µs | |
| コード長 | 216 bytes |
| 記録 | |
| コンパイル時間 | 821 ms |
| コンパイル使用メモリ | 173,368 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-15 21:23:08 |
| 合計ジャッジ時間 | 2,169 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 22 |
ソースコード
#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