結果
問題 | No.3011 あ、俺こいつの役やりたい! |
ユーザー |
|
提出日時 | 2025-01-25 14:09:04 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 66 ms / 2,000 ms |
コード長 | 183 bytes |
コンパイル時間 | 1,313 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 69,248 KB |
平均クエリ数 | 11.50 |
最終ジャッジ日時 | 2025-01-25 23:09:28 |
合計ジャッジ時間 | 5,722 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge11 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 44 |
ソースコード
left=0 ######### right=10**9 while right-left>1: c=(right+left)//2 print(c) x=int(input()) if x==0: right=c else: exit() left=c print(left)