結果
問題 | No.253 ロウソクの長さ |
ユーザー | kopricky |
提出日時 | 2017-08-15 02:23:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,019 bytes |
コンパイル時間 | 1,558 ms |
コンパイル使用メモリ | 159,664 KB |
実行使用メモリ | 40,108 KB |
最終ジャッジ日時 | 2024-07-17 01:23:44 |
合計ジャッジ時間 | 8,186 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
#include <bits/stdc++.h> #define ll long long #define INF 1000000005 #define MOD 1000000007 #define EPS 1e-10 #define rep(i,n) for(int i=0;i<(int)n;++i) #define each(a, b) for(auto (a): (b)) #define all(v) (v).begin(),(v).end() #define fi first #define se second #define pb push_back #define show(x) cout<<#x<<" = "<<(x)<<endl #define spair(p) cout<<#p<<": "<<p.fi<<" "<<p.se<<endl #define svec(v) cout<<#v<<":";rep(kbrni,v.size())cout<<" "<<v[kbrni];cout<<endl #define sset(s) cout<<#s<<":";each(kbrni,s)cout<<" "<<kbrni;cout<<endl #define smap(m) cout<<#m<<":";each(kbrni,m)cout<<" {"<<kbrni.first<<":"<<kbrni.second<<"}";cout<<endl using namespace std; typedef pair<int,int>P; const int MAX_N = 100005; int main() { cin.tie(0); ios::sync_with_stdio(false); int l=10,h=1000000001; cout << "? " << 1000 << endl; int cnt = 0; int fres; cin >> fres; if(fres == 0){ cout << "! " << fres << endl; }else if(fres < 0){ h=1000; while(1){ cnt++; l--,h--; int mid = (l+h)/2; if(mid == l){ cout << "! " << mid + cnt << endl; return 0; } cout << "? " << mid << endl; int res; cin >> res; if(res == 0){ cout << "! " << mid + cnt << endl; return 0; }else if(res < 0){ h=mid; }else{ l=mid+1; } } }else{ l=1001; while(1){ cnt++; l--,h--; int mid = (l+h)/2; if(mid == l){ cout << "! " << mid + cnt << endl; return 0; } int res; cin >> res; if(res == 0){ cout << "! " << mid + cnt << endl; return 0; }else if(res < 0){ h=mid; }else{ l=mid+1; } } } return 0; }