結果

問題 No.304 鍵(1)
ユーザー ant2357ant2357
提出日時 2016-07-08 00:05:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 755 bytes
コンパイル時間 1,391 ms
コンパイル使用メモリ 162,712 KB
実行使用メモリ 36,400 KB
最終ジャッジ日時 2023-09-24 00:10:40
合計ジャッジ時間 7,947 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"

#define REP(i, n) for(decltype(n) i = 0; i < (n); i++)
#define REP2(i, x, n) for(decltype(x) i = (x); i < (n); i++)
#define RREP(i, n) for (decltype(n) i = (n) - 1;i >= 0; i--)

#define ALL(a) (a).begin(),(a).end()
#define SORT(c) sort((c).begin(),(c).end())
#define DESCSORT(c) sort(c.begin(), c.end(), greater<int>())

#define LL long long int
#define LD long double

#define PI 3.14159265358979

#define _CRT_SECURE_NO_WARNINGS

using namespace std;

//================================================

int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);

	REP(i, 10) {
		REP(j, 10) {
			REP(k, 10) {
				cout << i << j << k << "\n";
				string S;
				cin >> S;
				if (S == "unlocked") return 0;
			}
		}
	}

	return 0;
}
0