結果
| 問題 | No.253 ロウソクの長さ |
| コンテスト | |
| ユーザー |
tjake
|
| 提出日時 | 2015-12-20 17:04:24 |
| 言語 | Python2 (2.7.18) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 152 bytes |
| コンパイル時間 | 199 ms |
| コンパイル使用メモリ | 7,068 KB |
| 実行使用メモリ | 25,616 KB |
| 平均クエリ数 | 1.00 |
| 最終ジャッジ日時 | 2024-07-16 08:09:17 |
| 合計ジャッジ時間 | 7,933 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 36 |
ソースコード
import sys f=sys.stdout.flush l=10;r=10**10 while-~l<r: m=(l+r)/2 print"?",m;f() if-~input():l=m else:r=m l=max(l-1,0);r=max(r-1,1) print"!",l;f()
tjake