結果

問題 No.2921 Seated in Classroom
ユーザー YuuuT
提出日時 2024-10-12 16:05:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 1,057 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,996 KB
最終ジャッジ日時 2024-10-12 16:05:22
合計ジャッジ時間 2,501 ms
ジャッジサーバーID
(参考情報)
judge4 / judge
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

# oj t -c "python3 main.py"
import sys,math
from collections import defaultdict,deque
from itertools import combinations,permutations,accumulate,product
from bisect import bisect_left,bisect_right
from heapq import heappop,heappush,heapify
#from more_itertools import distinct_permutations,distinct_combinations
#from sortedcontainers import SortedList,SortedSet
def input():return sys.stdin.readline().rstrip()
def ii(): return int(input())
def ms(): return map(int, input().split())
def li(): return list(map(int,input().split()))
inf = pow(10,18)
mod = 998244353
#/////////////////////////////////
# 切り上げ除算
def celiDiv(p : int, q : int) -> int:
  return (p + q -1) // q
inf = pow(10,9)
def solve():
  N,M = ms()
  def megru_bisect(ng,ok):
    def judge(mid):
      return celiDiv(N,4)<=mid and celiDiv(N+M,8)<=mid
    while abs(ok-ng)>1:
      mid = (ok+ng)//2
      if judge(mid): # 条件を満たすなら
        ok = mid
      else:
        ng = mid
  
    return ng,ok
  print(megru_bisect(0,inf)[1])
T = ii()
for _ in range(T): solve()
0