結果

問題 No.304 鍵(1)
ユーザー fumi6328fumi6328
提出日時 2018-09-14 21:48:52
言語 C++14
(gcc 12.3.0 + boost 1.83.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,836 KB
testcase_01 AC 27 ms
24,580 KB
testcase_02 WA -
testcase_03 AC 25 ms
25,220 KB
testcase_04 AC 39 ms
24,580 KB
testcase_05 WA -
権限があれば一括ダウンロードができます

ソースコード

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