結果

問題 No.5006 Hidden Maze
ユーザー platinum
提出日時 2022-05-12 08:56:30
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 420 bytes
コンパイル時間 1,712 ms
実行使用メモリ 22,900 KB
スコア 0
平均クエリ数 1001.00
最終ジャッジ日時 2022-06-12 13:31:52
合計ジャッジ時間 8,270 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 100
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (int)(n); i++)

using namespace std;
using LL = long long;
using P = pair<int,int>;
using vv = vector<vector<int>>;
const int INF = (int)1e9;
const LL LINF = (LL)1e18;

int main(){
    int H, W, p;
    cin >> H >> W >> p;
    rep(i,1001){
        string ans = "INVALID";
        cout << ans << endl;
        int res;
        cin >> res;
    }

    return 0;
}
0