結果
問題 | No.305 鍵(2) |
ユーザー | tkmst201 |
提出日時 | 2017-04-16 14:40:38 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,090 bytes |
コンパイル時間 | 1,407 ms |
コンパイル使用メモリ | 158,576 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 26.77 |
最終ジャッジ日時 | 2024-07-16 12:49:10 |
合計ジャッジ時間 | 5,870 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
24,964 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 21 ms
24,836 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
#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; }