結果
問題 | No.2357 Guess the Function |
ユーザー | HIcoder |
提出日時 | 2023-06-26 00:06:56 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 26 ms / 1,000 ms |
コード長 | 984 bytes |
コンパイル時間 | 822 ms |
コンパイル使用メモリ | 81,832 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 2.91 |
最終ジャッジ日時 | 2024-07-02 17:13:09 |
合計ジャッジ時間 | 1,736 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
24,556 KB |
testcase_01 | AC | 19 ms
24,580 KB |
testcase_02 | AC | 19 ms
24,836 KB |
testcase_03 | AC | 21 ms
24,964 KB |
testcase_04 | AC | 20 ms
25,220 KB |
testcase_05 | AC | 19 ms
24,964 KB |
testcase_06 | AC | 19 ms
25,220 KB |
testcase_07 | AC | 21 ms
24,964 KB |
testcase_08 | AC | 20 ms
24,964 KB |
testcase_09 | AC | 20 ms
25,220 KB |
testcase_10 | AC | 20 ms
24,836 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:58:21: warning: 'A' may be used uninitialized [-Wmaybe-uninitialized] 58 | cout<<"! "<<A<<' '<<B<<endl; | ^~~ main.cpp:42:13: note: 'A' was declared here 42 | int A,B; | ^
ソースコード
#include<iostream> #include<set> #include<algorithm> #include<vector> #include<string> #include<set> #include<map> #include<numeric> #include<queue> #include<cmath> using namespace std; typedef long long ll; const ll INF=1LL<<60; typedef pair<int,int> P; typedef pair<int,P> PP; const ll MOD=1e9+7; int main(){ int x0=100; cout<<"? "<<x0<<endl; int a0,a1; cin>>a0; if(a0==99){ int A,B; A=99; B=100; cout<<"! "<<A<<' '<<B<<endl; return 0; } else{ int x1=100-a0-1; cout<<"? "<<x1<<endl; cin>>a1;//f(100-a0-1)=B-1 int A,B; B=(a1+1); for(int a=0;a<=100;a++){ /* if((x1+a)%B==B-1){ A=a; break; } */ if((x0+a)%B==a0){ A=a; break; } } cout<<"! "<<A<<' '<<B<<endl; } return 0; }