結果

問題 No.192 合成数
ユーザー test
提出日時 2020-09-17 22:42:58
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 621 bytes
コンパイル時間 1,795 ms
コンパイル使用メモリ 196,072 KB
最終ジャッジ日時 2025-01-14 15:42:53
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i, ss, ee) for (int i = ss; i < ee; ++i)
using namespace std;

int N;
int ans;
string s;
vector<int> v;

bool func(int n) {
  vector<int> v;
  for (int i = 1; i * i <= n; i++) {
    if (n % i == 0) {
      v.emplace_back(i);
      if (i * i != n) v.emplace_back(n / i);
    }
  }
  if (v.size() > 2) { return true; }
  return false;
}

void input() { cin >> N; }

void solve() {
  int ans;
  rep(i, N - 100, N + 101) {
    if (func(i)) {
      cout << i << endl;
      break;
    }
  }
}

int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  input();
  solve();
  getchar();
}
0