結果

問題 No.2921 Seated in Classroom
ユーザー yamasaKit_
提出日時 2025-01-31 23:07:47
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,383 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 648 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2025-01-31 23:07:56
合計ジャッジ時間 8,678 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import cache, partial
from pprint import pprint
import sys
from typing import Any, Final

try:
    from icecream import ic
except ImportError:  # Graceful fallback if IceCream isn't installed.
    ic = lambda *a: None if not a else (a[0] if len(a) == 1 else a)  # noqa
debug = partial(print, file=sys.stderr)
dpprint = partial(pprint, stream=sys.stderr)
sys.setrecursionlimit(10**6)
MOD = 998244353

T: Final = int(input())


def f(N: int, M: int) -> int:
    s = (N + 3) // 4
    if s * 8 - N >= M:
        return s
    return (N + M + 7) // 8
    # x = (M - s * 8) // 2
    # return (x + 7) // 8 + s


for _ in range(T):
    N, M = map(int, input().split())
    print(f(N, M))
0