結果
| 問題 | No.3011 あ、俺こいつの役やりたい! |
| コンテスト | |
| ユーザー |
Prala
|
| 提出日時 | 2025-01-25 13:24:39 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 584 bytes |
| 記録 | |
| コンパイル時間 | 339 ms |
| コンパイル使用メモリ | 85,632 KB |
| 実行使用メモリ | 87,784 KB |
| 平均クエリ数 | 12.61 |
| 最終ジャッジ日時 | 2026-06-23 22:45:15 |
| 合計ジャッジ時間 | 5,582 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 3 RE * 41 |
ソースコード
import sys def ST(): return pin().rstrip() def IN(): return int(pin()) def IM(): return map(int, pin().split()) def IL(): return list(map(int, pin().split())) def SR(n:int): return [pin().rstrip() for _ in range(n)] def IMatrix(n:int): return [IL() for _ in range(n)] ##----------------- import random import math import bisect import itertools from collections import defaultdict, deque #from sortedcontainers import SortedList ##----------------- r = 10**9+1 l = 0 for i in range(30): c = (r+l)//2 print(c, flush=True) R = int(input()) if R: l = c else: r = c+1 print(l)
Prala