結果

問題 No.304 鍵(1)
ユーザー shobonvipshobonvip
提出日時 2024-11-11 12:10:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 1,308 bytes
コンパイル時間 5,033 ms
コンパイル使用メモリ 261,524 KB
実行使用メモリ 25,196 KB
平均クエリ数 309.17
最終ジャッジ日時 2024-11-11 12:10:09
合計ジャッジ時間 6,196 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

/**
	author:  shobonvip
	created: 2024.11.11 12:09:07
**/

#include<bits/stdc++.h>
using namespace std;

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)
#define all(v) v.begin(), v.end()

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

int main(){
	rep(i,0,10){
		rep(j,0,10){
			rep(k,0,10){
				cout << i << j << k << endl;
				string s; cin >> s;
				if (s == "unlocked") {
					return 0;
				}
			}
		}
	}
}

0