結果
問題 | No.192 合成数 |
ユーザー | Sota |
提出日時 | 2022-05-23 08:57:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,556 bytes |
コンパイル時間 | 652 ms |
コンパイル使用メモリ | 82,412 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-20 13:01:57 |
合計ジャッジ時間 | 1,705 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> //cin, cout #include <vector> //vector #include <algorithm> //sort,min,max,count #include <string> //string,getline, to_string #include <cstdlib> //abs(int) #include <utility> //swap, pair #include <deque> //deque #include <climits> //INT_MAX #include <bitset> //bitset #include <cmath> //sqrt, ceil. M_PI, pow, sin #include <ios> //fixed #include <iomanip> //setprecision #include <sstream> //stringstream using namespace std; inline bool JudgePrimeNumber(const long long int a) { //素数か判定する if (a < 2) { return false; } if (a == 2) { return true; } if (a % 2 == 0) { return false; } for (long long int i = 3; i <= a / i; i += 2) { if (a % i == 0) { return false; } } return true; } inline bool JudgeMultipleOfThree(const long long int n) { //3の倍数か判定する long long int temp = n; long long int sum = 0; while (temp > 0) { sum += temp % 10; temp /= 10; } if (sum % 3 == 0) { return true; } else { return false; } } inline bool JudgeCompositeNumber(const long long int a) { //合成数か判定する if (a < 4) { return false; } if (a % 2 == 0) { return true; } if (a < 10) { if (a == 9) { return true; } else { return false; } } else { if (a % 10 == 5) { return true; } if (JudgeMultipleOfThree(a)) { return true; } if (!JudgePrimeNumber(a)) { return true; } } return false; } int main() { int N; cin >> N; for (int i = N - 100; i <= N + 100; i++) { if (JudgeCompositeNumber(i)) { cout << i << endl; return 0; } } return 0; }