結果

問題 No.2921 Seated in Classroom
ユーザー loop0919loop0919
提出日時 2024-09-13 01:37:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 524 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 82,960 KB
実行使用メモリ 76,436 KB
最終ジャッジ日時 2024-09-13 01:37:10
合計ジャッジ時間 4,700 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 430 ms
76,272 KB
testcase_01 AC 285 ms
76,388 KB
testcase_02 AC 238 ms
76,356 KB
testcase_03 AC 455 ms
76,436 KB
testcase_04 AC 524 ms
76,276 KB
testcase_05 AC 37 ms
53,416 KB
testcase_06 AC 38 ms
53,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def ceil_div(a, b):
    return (a + b - 1) // b


def solve():
    N, M = map(int, input().split())

    if N >= M:
        print(ceil_div(N, 4))
        return

    ans = 0
    ans += ceil_div(N, 4)
    M -= ceil_div(N, 4) * 4 + (-N % 4)

    if M > 0:
        ans += ceil_div(M, 8)

    print(ans)


T = int(input())

for _ in range(T):
    solve()
0