結果
問題 | No.331 CodeRunnerでやれ |
ユーザー | face4 |
提出日時 | 2020-01-02 10:10:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 376 ms / 5,000 ms |
コード長 | 1,095 bytes |
コンパイル時間 | 601 ms |
コンパイル使用メモリ | 65,952 KB |
実行使用メモリ | 25,476 KB |
平均クエリ数 | 352.47 |
最終ジャッジ日時 | 2024-07-17 02:25:40 |
合計ジャッジ時間 | 6,569 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 164 ms
25,232 KB |
testcase_01 | AC | 158 ms
24,848 KB |
testcase_02 | AC | 171 ms
24,836 KB |
testcase_03 | AC | 279 ms
24,848 KB |
testcase_04 | AC | 167 ms
25,092 KB |
testcase_05 | AC | 174 ms
25,092 KB |
testcase_06 | AC | 328 ms
25,220 KB |
testcase_07 | AC | 195 ms
25,220 KB |
testcase_08 | AC | 376 ms
24,592 KB |
testcase_09 | AC | 211 ms
25,220 KB |
testcase_10 | AC | 254 ms
25,476 KB |
testcase_11 | AC | 252 ms
24,976 KB |
testcase_12 | AC | 227 ms
24,964 KB |
testcase_13 | AC | 231 ms
25,220 KB |
testcase_14 | AC | 260 ms
24,848 KB |
testcase_15 | AC | 228 ms
24,836 KB |
testcase_16 | AC | 337 ms
24,836 KB |
ソースコード
#include<iostream> #include<cstring> using namespace std; #define inRange(x,a,b) (a <= x && x < b) int di[8] = {0,1,0,-1,1,1,-1,-1}; int dj[8] = {1,0,-1,0,1,-1,1,-1}; int way[50][50][4]; bool vis[50][50] = {}; void front(){ cout << "F" << endl << flush; } void right(){ cout << "R" << endl << flush; } void back(){ cout << "B" << endl << flush; } void goal(){ front(); string s; cin >> s; if(s == "20151224") goal(); exit(0); } // 次出力する void dfs(int i, int j, int dir, int res){ if(res == 20151224) goal(); for(int k = 0; k < 4; k++){ if(res > 0){ if(res == 20151224) goal(); int ni = i+di[dir], nj = j+dj[dir]; if(!vis[ni][nj]){ vis[ni][nj] = true; front(); cin >> res; dfs(ni, nj, dir, res); } } right(); cin >> res; dir = (dir+1)%4; } back(); cin >> res; return; } int main(){ vis[25][25] = true; int dir = 0, res; cin >> res; dfs(25, 25, 0, res); }