結果
問題 | No.2357 Guess the Function |
ユーザー | luanmenglei |
提出日時 | 2023-06-23 21:49:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 536 bytes |
コンパイル時間 | 2,166 ms |
コンパイル使用メモリ | 203,140 KB |
実行使用メモリ | 25,488 KB |
平均クエリ数 | 3.00 |
最終ジャッジ日時 | 2024-07-01 01:24:14 |
合計ジャッジ時間 | 2,995 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 22 ms
24,836 KB |
testcase_05 | AC | 23 ms
24,964 KB |
testcase_06 | AC | 22 ms
25,220 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 21 ms
24,836 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 main() { int c = 1; cout << "? " << c << endl; int x, y; cin >> x; int d = rand(x - 1, 100); cout << "? " << d << endl; cin >> y; for (int A = 0; A <= 100; A ++) { for (int B = A + 1; B <= 100; B ++) { if ((c + A) % B == x && (d + A) % B == y) { cout << "! " << A << " " << B; return 0; } } } return 0; } // 7 10