結果

問題 No.305 鍵(2)
ユーザー tkmst201tkmst201
提出日時 2017-04-16 14:40:38
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 1,090 bytes
コンパイル時間 2,506 ms
コンパイル使用メモリ 144,692 KB
実行使用メモリ 24,480 KB
平均クエリ数 26.77
最終ジャッジ日時 2023-09-23 13:11:57
合計ジャッジ時間 6,859 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define FOR(i,a,b) for(int i=(a);i<(b);i++)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()

template<typename A, typename B> inline bool chmax(A &a, B b) { if (a<b) { a=b; return 1; } return 0; }
template<typename A, typename B> inline bool chmin(A &a, B b) { if (a>b) { a=b; return 1; } return 0; }

typedef unsigned long long ull;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef pair<int, pii> P;

const ll INF = 1ll<<29;
const ll MOD = 1000000007;
const double EPS  = 1e-10;

int main() {
	string ans = "0000000000";
	bool done[10] = {};
	
	int before = -1;
	int last = 0;
	
	while (true) {
		printf("%s\n", ans.c_str());
		fflush(stdout);
		
		int now;
		string dummy;
		cin >> now >> dummy;
		if (now == 10) break;
		
		if (before == -1) {
			before = now;
		}
		else {
			if (before < now) last++;
			if (before > now) {
				ans[last] = (ans[last] - '0' - 1 + 10) % 10 + '0';
				last++;
				before++;
			}
			
			ans[last] = (ans[last] - '0' + 1) % 10 + '0';
		}
	}
	
	return 0;
}
0