結果

問題 No.2921 Seated in Classroom
ユーザー timitimi
提出日時 2024-10-12 14:43:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 499 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,028 KB
最終ジャッジ日時 2024-10-12 14:43:52
合計ジャッジ時間 2,358 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 199 ms
76,448 KB
testcase_01 AC 145 ms
76,368 KB
testcase_02 AC 122 ms
76,524 KB
testcase_03 AC 223 ms
76,416 KB
testcase_04 AC 175 ms
77,028 KB
testcase_05 AC 43 ms
54,400 KB
testcase_06 AC 43 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq 
from heapq import heappop,heappush,heapify
from sys import stdin, setrecursionlimit
input = stdin.readline
readline = stdin.readline

from collections import deque
d=deque()

T=int(input())
for i in range(T):
  N,M=map(int,input().split())
  ng,ok=0,10**9
  while ok-ng>1:
    mid=(ok+ng)//2 
    f=1
    t=8*mid 
    if 4*mid<N:
      f=0 
    p=t-N 
    if p<M:
      f=0 
    if f==0:
      ng=mid 
    else:
      ok=mid 
  print(ok)
    








#A=list(map(int, input().split()))
0