結果
問題 |
No.3011 あ、俺こいつの役やりたい!
|
ユーザー |
|
提出日時 | 2025-07-13 05:03:51 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 24 ms / 2,000 ms |
コード長 | 862 bytes |
コンパイル時間 | 4,351 ms |
コンパイル使用メモリ | 251,136 KB |
実行使用メモリ | 26,240 KB |
平均クエリ数 | 11.61 |
最終ジャッジ日時 | 2025-07-13 05:03:59 |
合計ジャッジ時間 | 7,965 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 44 |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll = long long; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } ll inf_ll = 9223372036854775807; #define rep(i, n) for (ll i = 0; i < (ll)(n); i++) using mint = atcoder::modint998244353; using mint1 = atcoder::modint1000000007; using Pa = std::pair<ll, ll>; int Yes(bool x){ if(x) cout << "Yes"; else cout << "No"; cout << endl; return 0; } int main(){ ll X = 5e8; cout << X << endl; cout << flush; while(true){ ll t; cin >> t; if(t != 0){ return 0; } X = (X+1) / 2; cout << X << endl; cout << flush; } }