結果

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

ソースコード

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