結果

問題 No.305 鍵(2)
ユーザー data9824data9824
提出日時 2016-02-01 01:04:55
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 611 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 57,828 KB
実行使用メモリ 25,220 KB
平均クエリ数 86.69
最終ジャッジ日時 2024-07-16 22:53:17
合計ジャッジ時間 1,779 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
24,836 KB
testcase_01 AC 27 ms
24,964 KB
testcase_02 AC 28 ms
25,220 KB
testcase_03 AC 27 ms
24,836 KB
testcase_04 AC 26 ms
24,836 KB
testcase_05 AC 26 ms
24,580 KB
testcase_06 AC 23 ms
25,220 KB
testcase_07 AC 26 ms
24,580 KB
testcase_08 AC 27 ms
25,208 KB
testcase_09 AC 25 ms
24,824 KB
testcase_10 AC 27 ms
24,580 KB
testcase_11 AC 26 ms
24,836 KB
testcase_12 AC 26 ms
25,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>

using namespace std;

int main() {
	string key;
	for (int i = 0; i < 10; ++i) {
		int maxMatched = 0;
		int maxDigit = 0;
		for (int k = 0; k < 10; ++k) {
			string challenge = key;
			challenge.push_back('0' + k);
			if (key.size() < 9) {
				challenge.append(string(9 - key.size(), '0'));
			}
			cout << challenge << endl;
			int matched;
			string locked;
			cin >> matched >> locked;
			if (locked == "unlocked") {
				return 0;
			}
			if (matched > maxMatched) {
				maxDigit = k;
				maxMatched = matched;
			}
		}
		key.push_back('0' + maxDigit);
	}
	return 0;
}
0