結果
問題 | No.331 CodeRunnerでやれ |
ユーザー | kotatsugame |
提出日時 | 2020-03-11 03:46:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 689 bytes |
コンパイル時間 | 578 ms |
コンパイル使用メモリ | 65,712 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 2891.24 |
最終ジャッジ日時 | 2024-07-16 20:36:51 |
合計ジャッジ時間 | 9,533 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 144 ms
24,592 KB |
testcase_01 | AC | 160 ms
24,976 KB |
testcase_02 | WA | - |
testcase_03 | AC | 286 ms
24,976 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 505 ms
24,976 KB |
testcase_07 | RE | - |
testcase_08 | AC | 1,450 ms
25,232 KB |
testcase_09 | AC | 404 ms
24,964 KB |
testcase_10 | AC | 378 ms
25,220 KB |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
#include<iostream> using namespace std; int dx[4]={1,0,-1,0}; int dy[4]={0,-1,0,1}; bool vis[4][50][50]; void ending() { while(true) { cout<<"F"<<endl; string s; cin>>s; if(s=="Merry")cin>>s,exit(0); } } void dfs(int x,int y,int r) { int t;cin>>t; vis[r][x][y]=true; if(t==20151224)ending(); if(t>0) { int tx=x+dx[r],ty=y+dy[r],tr=r; if(!vis[tr][tx][ty]) { cout<<"F"<<endl; dfs(tx,ty,tr); } } for(int nr=1;nr<=4;nr++) { int tx=x,ty=y,tr=(r+nr)%4; cout<<"R"<<endl; cin>>t; if(t==20151224)ending(); if(!vis[tr][tx][ty]) { cout<<"F"<<endl; dfs(tx,ty,tr); } } cout<<"B"<<endl; cin>>t; } main() { int nx=25,ny=25,nr=0; dfs(nx,ny,nr); }