結果
問題 | No.2357 Guess the Function |
ユーザー | luanmenglei |
提出日時 | 2023-06-23 22:09:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 26 ms / 1,000 ms |
コード長 | 986 bytes |
コンパイル時間 | 2,071 ms |
コンパイル使用メモリ | 206,888 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 3.00 |
最終ジャッジ日時 | 2024-07-01 01:53:12 |
合計ジャッジ時間 | 3,230 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
24,812 KB |
testcase_01 | AC | 24 ms
24,836 KB |
testcase_02 | AC | 23 ms
25,604 KB |
testcase_03 | AC | 24 ms
24,964 KB |
testcase_04 | AC | 24 ms
24,580 KB |
testcase_05 | AC | 23 ms
24,836 KB |
testcase_06 | AC | 24 ms
24,836 KB |
testcase_07 | AC | 23 ms
25,220 KB |
testcase_08 | AC | 23 ms
25,220 KB |
testcase_09 | AC | 23 ms
24,836 KB |
testcase_10 | AC | 23 ms
25,220 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); int rand(int l, int r) { return uniform_int_distribution<>(l, r)(rng); } int cnt[101]; int main() { int c = 51; cout << "? " << c << endl; int x; cin >> x; vector<pair<int, int>> posb; for (int a = 0; a <= 100; a ++) { for (int b = a + 1; b <= 100; b ++) { if ((a + c) % b == x) { posb.emplace_back(a, b); } } } for (int d = 1; d <= 100; d ++) { auto solve = [&]() { for (int i = 0; i <= 100; i ++) cnt[i] = 0; for (auto [a, b] : posb) cnt[(a + d) % b] ++; for (int i = 0; i <= 100; i ++) if (cnt[i] > 1) { // cout << "d: " << d << " cnt: " << cnt[i] << "\n"; return false; } cout << "? " << d << endl; int y; cin >> y; for (auto [a, b] : posb) { if ((a + d) % b == y) { cout << "! " << a << " " << b; break; } } return true; }; if (solve()) { return 0; } } return 0; } // 7 10