結果
問題 | No.192 合成数 |
ユーザー | pekempey |
提出日時 | 2015-04-26 22:12:49 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 525 bytes |
コンパイル時間 | 570 ms |
コンパイル使用メモリ | 73,084 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-27 01:29:52 |
合計ジャッジ時間 | 1,655 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 25 |
コンパイルメッセージ
main.cpp: In function ‘int solve(int)’: main.cpp:25:1: warning: control reaches end of non-void function [-Wreturn-type] 25 | } | ^
ソースコード
#include <algorithm> #include <cstdio> #include <cstring> #include <iostream> #include <map> #include <queue> #include <set> #include <sstream> #include <string> #include <vector> #include <cmath> using namespace std; bool isprime(int n) { for (int i = 2; i * i <= n; i++) { if (n % i == 0) return false; } return true; } int solve(int n) { for (int i = n - 100; i <= n + 100; i++) { if (!isprime(i)) return i; } } int main() { int n; cin >> n; cout << solve(n) << endl; }