結果

問題 No.192 合成数
ユーザー m1025o1184tm1025o1184t
提出日時 2019-12-05 15:49:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 439 bytes
コンパイル時間 1,682 ms
コンパイル使用メモリ 165,452 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-10 03:26:47
合計ジャッジ時間 3,081 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);++i)
#define all(a) (a).begin(),(a).end()
using namespace std;
typedef long long ll;

bool isPrime(int a){
	if(a <= 0) return true;
	for(int i = 2;i<= sqrt(a);++i){
		if(a % i == 0) return true;
	}
	return false;
}

int main(){
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n;
  cin >> n;
  for(int i = n - 100;i<=n + 100;++i){
  	if(!isPrime(i)) return i;
  }
  return 0;
}
0