結果
問題 |
No.3011 あ、俺こいつの役やりたい!
|
ユーザー |
|
提出日時 | 2025-01-25 14:02:46 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 169 bytes |
コンパイル時間 | 181 ms |
コンパイル使用メモリ | 82,188 KB |
実行使用メモリ | 84,328 KB |
平均クエリ数 | 1.00 |
最終ジャッジ日時 | 2025-01-25 23:05:46 |
合計ジャッジ時間 | 10,935 ms |
ジャッジサーバーID (参考情報) |
judge9 / judge6 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 44 |
ソースコード
left=0 ######### right=10**10 while right-left>1: c=(right+left)//2 print(c) x=int(input()) if x==0: right=c else: left=c print(left)