結果

問題 No.331 CodeRunnerでやれ
ユーザー chocoruskchocorusk
提出日時 2018-12-11 02:43:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 376 ms / 5,000 ms
コード長 933 bytes
コンパイル時間 1,051 ms
コンパイル使用メモリ 96,696 KB
実行使用メモリ 25,448 KB
平均クエリ数 399.88
最終ジャッジ日時 2024-07-17 02:03:49
合計ジャッジ時間 7,673 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 167 ms
24,976 KB
testcase_01 AC 157 ms
25,232 KB
testcase_02 AC 181 ms
24,592 KB
testcase_03 AC 246 ms
25,220 KB
testcase_04 AC 181 ms
25,220 KB
testcase_05 AC 183 ms
25,220 KB
testcase_06 AC 376 ms
25,232 KB
testcase_07 AC 289 ms
24,952 KB
testcase_08 AC 371 ms
24,848 KB
testcase_09 AC 212 ms
24,964 KB
testcase_10 AC 239 ms
24,580 KB
testcase_11 AC 221 ms
25,232 KB
testcase_12 AC 312 ms
25,448 KB
testcase_13 AC 246 ms
24,836 KB
testcase_14 AC 330 ms
24,848 KB
testcase_15 AC 274 ms
25,220 KB
testcase_16 AC 357 ms
24,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <string>
#include <iostream>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
bool e;
bool used[50][50];
int dx[4]={1, 0, -1, 0}, dy[4]={0, 1, 0, -1};
void dfs(int x, int y, int k){
	used[x][y]=1;
	int d;
	cin>>d;
	for(int i=0; i<4; i++){
		if(d==20151224){
			while(1){
				cout<<"F"<<endl;
				string s;
				cin>>s;
				if(s=="Merry"){
					cin>>s;
				    e=1;
				    return;
				}
			}
		}
		if(d && !used[x+dx[(k+i)&3]][y+dy[(k+i)&3]]){
			cout<<"F"<<endl;
			dfs(x+dx[(k+i)&3], y+dy[(k+i)&3], (k+i)&3);
			if(e) return;
			cout<<"B"<<endl;
			cin>>d;
		}
		cout<<"L"<<endl;
		cin>>d;
	}
}
int main()
{
	dfs(21, 21, 0);
	return 0;
}
0