結果
| 問題 | No.3085 Easy  Problems | 
| コンテスト | |
| ユーザー |  nasutarou1341 | 
| 提出日時 | 2025-04-05 12:09:33 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 1,520 bytes | 
| コンパイル時間 | 342 ms | 
| コンパイル使用メモリ | 82,240 KB | 
| 実行使用メモリ | 145,064 KB | 
| 最終ジャッジ日時 | 2025-04-05 12:09:39 | 
| 合計ジャッジ時間 | 6,022 ms | 
| ジャッジサーバーID (参考情報) | judge6 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 1 RE * 1 | 
| other | TLE * 1 -- * 30 | 
ソースコード
class nibutan:
  @staticmethod
  def nibutan(ok, ng, op):
    while abs(ok - ng) > 1:
      mid = (ok + ng) >> 1
      if op(mid):
        ok = mid
      else:
        ng = mid
    return ok
  @staticmethod
  def lt(L, n):
    """Lのうちn未満の最大の要素"""
    if L[0] >= n: return -1
    def op(mid):
      return L[mid] < n 
    ok = 0
    ng = len(L)
    return nibutan.nibutan(ok, ng, op)
  @staticmethod
  def le(L, n):
    """Lのうちn以下の最大の要素"""
    if L[0] > n: return -1
    def op(mid):
      return L[mid] <= n 
    ok = 0
    ng = len(L)
    return nibutan.nibutan(ok, ng, op)
      
  @staticmethod
  def gt(L, n):
    """Lのうちn超過の最小の要素"""
    if L[-1] <= n: return len(L)
    def op(mid):
      return L[mid] > n 
    ok = len(L) - 1
    ng = -1
    return nibutan.nibutan(ok, ng, op)
      
  @staticmethod
  def ge(L, n):
    """Lのうちn以上の最小の要素"""
    if L[-1] < n: return len(L)
    def op(mid):
      return L[mid] >= n 
    ok = len(L) - 1
    ng = -1
    return nibutan.nibutan(ok, ng, op)
N = int(input())
AB = [list(map(int, input().split())) for _ in range(N)]
Q = int(input())
XY = [list(map(int, input().split())) for _ in range(Q)]
A = [AB[i][0] for i in range(N)]
A.sort()
AL = {}
for a, b in AB:
  if b not in AL: AL[b] = []
  AL[b].append(a)
for k in AL.keys():
  AL[k].sort()
for x, y in XY:
  a = nibutan.le(A, x) + 1
  if y in AL[y]:
    b = nibutan.le(AL[y], x) + 1
  else:
    b = 0
  ans = a - b
  print(ans)
            
            
            
        