結果

問題 No.305 鍵(2)
ユーザー tkmst201tkmst201
提出日時 2017-04-16 14:47:07
言語 C++11
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,137 bytes
コンパイル時間 1,367 ms
コンパイル使用メモリ 145,664 KB
実行使用メモリ 35,936 KB
最終ジャッジ日時 2023-09-24 00:58:01
合計ジャッジ時間 7,909 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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";
	string now = "0000000000";
	bool done[10] = {};
	
	int before = -1;
	int last = 0;
	
	while (true) {
		
		if (last == 10) cout << ans << endl;
		else cout << now << endl;
		
		int num;
		string dummy;
		cin >> num >> dummy;
		if (num == 10) break;
		
		if (before != -1) {
			if (before < num) ans[last] = now[last++];
			else if (before > num) {
				ans[last] = (now[last] - '0' - 1 + 10) % 10 + '0';
				last++;
			}
			else now[last] = (now[last] - '0' + 1) % 10 + '0';
		}
		
		before = num;
	}
	
	return 0;
}
0