結果
問題 | No.331 CodeRunnerでやれ |
ユーザー | paruki |
提出日時 | 2016-06-21 11:17:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,064 bytes |
コンパイル時間 | 1,597 ms |
コンパイル使用メモリ | 166,548 KB |
実行使用メモリ | 93,340 KB |
最終ジャッジ日時 | 2024-07-17 00:00:20 |
合計ジャッジ時間 | 14,737 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
#include "bits/stdc++.h" using namespace std; #define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i)) #define rep(i,j) FOR(i,0,j) #define each(x,y) for(auto &(x):(y)) #define mp make_pair #define all(x) (x).begin(),(x).end() #define debug(x) cout<<#x<<": "<<(x)<<endl #define smax(x,y) (x)=max((x),(y)) #define smin(x,y) (x)=min((x),(y)) #define MEM(x,y) memset((x),(y),sizeof (x)) #define sz(x) (int)(x).size() typedef long long ll; typedef pair<int, int> pii; typedef vector<int> vi; typedef vector<ll> vll; const int INF = 20151224; int order(char c){ printf("%c\n", c); fflush(stdout); char res_[20]; scanf("%s", &res_); string res(res_); if(res == "Merry Christmas!") exit(0); return stoi(res); } int rnd(int mod){ return rand() % mod; } int main(){ while(1){ int cnt = rnd(4); int res = 0; rep(i, cnt) res = order('L'); if(res == 0)continue; if(res == INF) while(1)order('F'); int len = rnd(res) + 1; rep(i, len)order('F'); } }