結果

問題 No.192 合成数
ユーザー めうめう🎒
提出日時 2016-01-19 22:47:39
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 417 bytes
コンパイル時間 650 ms
コンパイル使用メモリ 71,748 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-07 15:36:18
合計ジャッジ時間 5,014 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <sstream>
#include <math.h>
#include <stack>
#include <set>
#include <algorithm>
#include <string>
#include <queue>
#include <stack>
#include <map>
#include <cstdio>
#include <vector>
using namespace std;

#define INF (1 << 30)
#define INFLL (1LL << 60)

int main() {
	int n;
	cin >> n;
	for(int i = n;i > n+100;i++){
		if(i % 2 == 0) {
			cout << i << endl;
			break;
		}
	}
	return 0;
}
0