aboutsummaryrefslogtreecommitdiff
path: root/store/works/life/algorithm-experiment/5.1a.cpp
blob: d0d442f32c32baff3a89e8be1f05edb80e6ea6fc (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
25
#include <bitset>
#include <ios>
#include <iostream>

std::bitset<10000000> f;

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

  while (true) {
    long long current;
    std::cin >> current;

    auto b = f[current - 10000000];
    if (b) {
      std::cout << current;
      break;
    } else {
      b = true;
    }
  }

  return 0;
}