結果
| 問題 | No.3011 あ、俺こいつの役やりたい! |
| コンテスト | |
| ユーザー |
dice360
|
| 提出日時 | 2025-01-25 12:38:00 |
| 言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 330 bytes |
| コンパイル時間 | 5,991 ms |
| コンパイル使用メモリ | 251,272 KB |
| 実行使用メモリ | 41,608 KB |
| 最終ジャッジ日時 | 2025-01-25 22:14:47 |
| 合計ジャッジ時間 | 143,424 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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 (tmp == 1)
return 0;
else
r = md;
}
}
dice360