aboutsummaryrefslogtreecommitdiff
path: root/works/life/algorithm-experiment/5.1c.cpp
blob: f38d199ae6b40a0b330a6e2bef89321c28c734ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <bitset>
#include <ios>
#include <iostream>

std::bitset<10000000> f;

int main() {
  std::ios_base::sync_with_stdio(false);
  std::cin.tie(nullptr);

  long long current;

  while (std::cin >> current) {
    f[current - 10000000].flip();
  }

  for (int i = 1; i < 10000000; ++i) {
    if (!f[i]) {
      std::cout << i + 10000000 << '\n';
    }
  }

  return 0;
}