結果

問題 No.304 鍵(1)
ユーザー 🐬hec🐬hec
提出日時 2015-11-27 23:05:51
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 1,464 ms
コンパイル使用メモリ 144,004 KB
実行使用メモリ 24,324 KB
平均クエリ数 309.17
最終ジャッジ日時 2023-09-23 22:02:45
合計ジャッジ時間 2,433 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
23,424 KB
testcase_01 AC 30 ms
23,460 KB
testcase_02 AC 60 ms
24,324 KB
testcase_03 AC 29 ms
23,472 KB
testcase_04 AC 44 ms
24,264 KB
testcase_05 AC 28 ms
23,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(void){
	rep(a,10)rep(b,10)rep(c,10){
		cout << a << b << c << endl;
		cout.flush();
		string in;
		cin >> in;
		if(in=="unlocked") return 0;
	}
	return 0;
}
0