結果
問題 | No.331 CodeRunnerでやれ |
ユーザー | mayoko_ |
提出日時 | 2015-12-24 12:44:39 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,770 bytes |
コンパイル時間 | 877 ms |
コンパイル使用メモリ | 86,044 KB |
実行使用メモリ | 97,728 KB |
平均クエリ数 | 2102.71 |
最終ジャッジ日時 | 2024-07-16 08:24:23 |
合計ジャッジ時間 | 12,538 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 154 ms
24,976 KB |
testcase_01 | AC | 153 ms
24,976 KB |
testcase_02 | AC | 175 ms
24,848 KB |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | AC | 293 ms
24,808 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
#include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> //#include<cctype> #include<climits> #include<iostream> #include<string> #include<vector> #include<map> //#include<list> #include<queue> #include<deque> #include<algorithm> //#include<numeric> #include<utility> #include<complex> //#include<memory> #include<functional> #include<cassert> #include<set> #include<stack> const int dx[] = {1, 0, -1, 0}; const int dy[] = {0, 1, 0, -1}; using namespace std; typedef long long ll; typedef vector<int> vi; typedef vector<ll> vll; typedef pair<int, int> pii; bool visit[50][50]; const int B = 25; int dir = 0; void dfs(int y, int x) { visit[y+B][x+B] = true; int odir = dir; string s; cin >> s; for (int k = 0; k < 4; k++) { cout << "L" << endl; cout.flush(); dir = (dir+1)%4; int f; cin >> f; if (f != 0) { if (f == 20151224) { s = "1"; while (isdigit(s[0])) { cout << "F" << endl; cout.flush(); cin >> s; } exit(0); } int ny = y+dy[(odir+k)%4]; int nx = x+dx[(odir+k)%4]; if (visit[ny+B][nx+B]) continue; cout << "F" << endl; cout.flush(); dfs(ny, nx); while (dir != (odir+k)%4) { cout << "L" << endl; cout.flush(); cin >> s; dir = (dir+1)%4; } } } while (dir != odir%4) { cout << "L" << endl; cout.flush(); dir = (dir+1)%4; cin >> s; } cout << "B" << endl; cout.flush(); } int main() { dfs(0, 0); return 0; }