結果

問題 No.192 合成数
ユーザー cocomoffcocomoff
提出日時 2019-08-21 16:19:32
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 1,252 ms
コンパイル使用メモリ 157,544 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-09 05:40:47
合計ジャッジ時間 2,466 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h> 

using namespace std;
typedef long long ll;

int main() {
    int N;
    cin >> N;
    int ans = -1;
    for (int i = N - 100; i <= N + 100; i++) {
        if (i % 2 == 0 && i != 2) {
            ans = i;
            break;
        }
    }
    cout << ans << endl;
}
0