結果
| 問題 | No.3011 あ、俺こいつの役やりたい! |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-01-25 14:05:37 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 172 bytes |
| 記録 | |
| コンパイル時間 | 241 ms |
| コンパイル使用メモリ | 85,376 KB |
| 実行使用メモリ | 85,456 KB |
| 平均クエリ数 | 1.00 |
| 最終ジャッジ日時 | 2026-06-24 00:19:33 |
| 合計ジャッジ時間 | 8,783 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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:
exit()
left=c