結果

問題 No.331 CodeRunnerでやれ
ユーザー sugim48sugim48
提出日時 2015-12-24 00:37:23
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 4,370 ms / 5,000 ms
コード長 830 bytes
コンパイル時間 699 ms
コンパイル使用メモリ 88,424 KB
実行使用メモリ 24,348 KB
平均クエリ数 7833.12
最終ジャッジ日時 2023-09-23 22:40:04
合計ジャッジ時間 18,278 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
23,628 KB
testcase_01 AC 158 ms
23,556 KB
testcase_02 AC 208 ms
24,232 KB
testcase_03 AC 285 ms
23,548 KB
testcase_04 AC 232 ms
23,388 KB
testcase_05 AC 238 ms
24,288 KB
testcase_06 AC 609 ms
23,496 KB
testcase_07 AC 482 ms
23,460 KB
testcase_08 AC 734 ms
23,488 KB
testcase_09 AC 849 ms
24,220 KB
testcase_10 AC 729 ms
23,656 KB
testcase_11 AC 2,182 ms
24,024 KB
testcase_12 AC 2,479 ms
23,632 KB
testcase_13 AC 2,326 ms
24,348 KB
testcase_14 AC 2,206 ms
24,024 KB
testcase_15 AC 4,370 ms
24,304 KB
testcase_16 AC 1,663 ms
23,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <algorithm>
#include <cstdio>
#include <functional>
#include <iostream>
#include <cfloat>
#include <climits>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <map>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <time.h>
#include <vector>
using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> i_i;
typedef pair<ll, int> ll_i;
typedef pair<double, int> d_i;
typedef pair<ll, ll> ll_ll;
typedef pair<double, double> d_d;
struct edge { int u, v; ll w; };

ll MOD = 1000000007;
ll _MOD = 1000000009;
double EPS = 1e-10;

int main() {
	random_device rd;
	mt19937 mt(rd());
	for (;;) {
		cout << "FFLR"[mt() % 4] << endl;
		string s; cin >> s;
		if (s == "Merry") break;
	}
}
0