結果

問題 No.2921 Seated in Classroom
ユーザー Basin-BugBasin-Bug
提出日時 2024-10-12 14:41:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 562 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 76,440 KB
最終ジャッジ日時 2024-10-12 14:41:33
合計ジャッジ時間 3,650 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 464 ms
75,960 KB
testcase_01 AC 292 ms
76,028 KB
testcase_02 AC 259 ms
76,024 KB
testcase_03 AC 515 ms
76,440 KB
testcase_04 AC 562 ms
76,256 KB
testcase_05 AC 37 ms
53,012 KB
testcase_06 AC 37 ms
52,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
T = int(input())
for i in range(T):
  n, m = map(int, input().split())
  ok = 10 ** 18
  ng = 0
  while ng + 1 < ok:
    mid = (ok + ng) // 2
    if 4 * mid >= n and mid * 8 >= m + n:
      ok = mid
    else:
      ng = mid
  print(ok)
0