結果

問題 No.192 合成数
ユーザー 158b
提出日時 2015-05-24 11:29:27
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 321 bytes
コンパイル時間 613 ms
コンパイル使用メモリ 63,208 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-07 15:24:30
合計ジャッジ時間 2,148 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 23 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <functional>
#include <string>
#include <limits.h>
#include <vector>
#include <numeric>
using namespace std;

// AC→大吉
// WA→凶
// TLE→地球滅亡

int main(){
	int n;
	cin >> n;
	
	srand(time(NULL));
	
	cout << rand() % 201 + ( n - 100) << endl;
	return 0;
}
0