結果
| 問題 | No.3519 A/B問題 |
| コンテスト | |
| ユーザー |
nono00
|
| 提出日時 | 2026-05-01 21:49:24 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 77 ms / 2,000 ms |
| コード長 | 1,805 bytes |
| 記録 | |
| コンパイル時間 | 2,941 ms |
| コンパイル使用メモリ | 334,144 KB |
| 実行使用メモリ | 30,064 KB |
| 平均クエリ数 | 234.60 |
| 最終ジャッジ日時 | 2026-05-01 21:49:37 |
| 合計ジャッジ時間 | 5,773 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 30 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
using ull = unsigned long long;
template <class T>
using MaxHeap = std::priority_queue<T>;
template <class T>
using MinHeap = std::priority_queue<T, vector<T>, greater<T>>;
#define rep2(i, n) for (ll i = 0; i < (n); i++)
#define rep3(i, l, r) for (ll i = (l); i < (r); i++)
#define rrep2(i, n) for (ll i = n; i-- > 0;)
#define rrep3(i, r, l) for (ll i = (r); i-- > (l);)
#define overload(a, b, c, d, ...) d
#define rep(...) overload(__VA_ARGS__, rep3, rep2)(__VA_ARGS__)
#define rrep(...) overload(__VA_ARGS__, rrep3, rrep2)(__VA_ARGS__)
#define all(x) begin(x), end(x)
bool chmin(auto& lhs, auto rhs) {
return lhs > rhs ? lhs = rhs, 1 : 0;
}
bool chmax(auto& lhs, auto rhs) {
return lhs < rhs ? lhs = rhs, 1 : 0;
}
struct IOIO {
IOIO() {
std::cin.tie(0)->sync_with_stdio(0);
}
} ioio;
#ifdef DEBUG
struct Judge {};
#else
struct Judge {
Judge() {}
char ask(string n, string m) {
cout << "? " << n << ' ' << m << endl;
char c;
cin >> c;
return c;
}
void answer(string x) {
cout << "! " << x << '\n';
cout.flush();
}
};
#endif
void solve() {
#ifdef DEBUG
Judge judge;
#else
Judge judge;
#endif
string ans;
rrep(i, 101) {
string cur(i + 1, '0');
cur.front() = '1';
int cnt = 0;
rep(j, 9) {
char res = judge.ask("1", cur);
if (res == '>' || res == '=') {
cnt++;
} else {
break;
}
}
if (cnt != 0 || !ans.empty()) ans.push_back(cnt + '0');
}
if (ans.empty()) ans = "0";
judge.answer(ans);
}
int main() {
int t = 1;
// cin >> t;
while (t--) solve();
}
nono00