結果
問題 | No.2357 Guess the Function |
ユーザー | random contestant |
提出日時 | 2023-06-23 22:40:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 848 bytes |
コンパイル時間 | 1,986 ms |
コンパイル使用メモリ | 199,168 KB |
実行使用メモリ | 25,580 KB |
平均クエリ数 | 2.00 |
最終ジャッジ日時 | 2024-07-01 02:24:06 |
合計ジャッジ時間 | 4,635 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
ソースコード
// #define _GLIBCXX_DEBUG #include <bits/stdc++.h> using namespace std; // #include <atcoder/all> // using namespace atcoder; using ll = long long; #define rep(i,n) for (ll i = 0; i < (n); ++i) using vl = vector<ll>; using vvl = vector<vl>; using P = pair<ll,ll>; #define pb push_back #define int long long #define double long double #define INF (ll) 3e18 // Ctrl + Shift + B コンパイル // Ctrl + C 中断 // ./m 実行 signed main(){ int a = -1; int b = -1; int x1 = 1000; int x2 = -1; int y1 = -1; int y2 = -1; cout << "? " << x1 << endl; cin >> y1; x2 = x1 - y1-1; cout << "? " << x2 << endl; cin >> y2; b = y2 + 1; a = b-1 - (x2 % b); cout << a << " " << b << endl; } // (A + x) % B = y // (A + x) % B = y // A = 13 B = 97 // x1 = 1000 // 1013 % 97 = 43 // x2 = 956 // (956+13) % 97 = 96 // a = b-1 - x2%b