結果

問題 No.304 鍵(1)
ユーザー fumi6328
提出日時 2018-09-14 21:48:52
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 365 bytes
コンパイル時間 731 ms
コンパイル使用メモリ 63,648 KB
実行使用メモリ 25,220 KB
平均クエリ数 346.00
最終ジャッジ日時 2024-07-16 16:07:17
合計ジャッジ時間 1,959 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
using namespace std;

int main()
{
    string ans;
    for(int i = 0; i < 9; i++){
        for(int j = 0; j < 9; j++){
            for(int k = 0; k < 9; k++){
                cout << i << j << k << endl;
                cin >> ans;
                if(ans == "unlocked") return 0;
            }
        }
    }
}
0