結果
問題 | No.2357 Guess the Function |
ユーザー | zezero |
提出日時 | 2023-06-23 22:08:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 741 bytes |
コンパイル時間 | 3,068 ms |
コンパイル使用メモリ | 166,484 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 3.00 |
最終ジャッジ日時 | 2024-07-01 01:53:08 |
合計ジャッジ時間 | 4,394 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
25,196 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 23 ms
24,836 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <utility> #include <map> #include <set> #include <queue> #include <iomanip> #include <cstring> #include <atcoder/all> using namespace std; using namespace atcoder; typedef long long ll; #define rep(i,n) for (int i = 0; i < int(n);i++) int main(){ int x1,x2; cout << "? 2" << endl; cin >> x1; x1 -= 2; cout << "? 3" << endl; cin >> x2; x2 -= 3; for (int i = 2; i <= 100;i++){ int y1 = x1; int y2 = x2; while(y1 < 0) y1 += i; while(y2 < 0) y2 += i; if (y1 == y2){ cout << "! " << y1 << " " << i << endl; return 0; } } if (x1 == x2+1){ cout << "! " << 0 << " " << 1 << endl; } return 0; }