結果
| 問題 | No.3011 あ、俺こいつの役やりたい! |
| コンテスト | |
| ユーザー |
dice360
|
| 提出日時 | 2025-01-25 13:36:17 |
| 言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 335 bytes |
| コンパイル時間 | 10,115 ms |
| コンパイル使用メモリ | 250,268 KB |
| 実行使用メモリ | 39,680 KB |
| 最終ジャッジ日時 | 2025-01-25 22:53:55 |
| 合計ジャッジ時間 | 145,973 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge11 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 44 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main()
{
int N;
cin >> N;
int l = 0, r = 1000000010;
int md;
while (r - l > 1)
{
md = (l + r) / 2;
cout << md << endl;
int tmp;
cin >> tmp;
if (abs(tmp) == 1)
return 0;
else
r = md;
}
}
dice360