結果

問題 No.2921 Seated in Classroom
ユーザー lollipoplollipop
提出日時 2024-10-12 17:03:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 636 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,452 KB
最終ジャッジ日時 2024-10-12 17:03:36
合計ジャッジ時間 4,200 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 615 ms
77,436 KB
testcase_01 AC 385 ms
77,276 KB
testcase_02 AC 329 ms
76,968 KB
testcase_03 AC 636 ms
77,056 KB
testcase_04 AC 596 ms
77,452 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 39 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def bisect(nm, a):
    ok = 0; ng = 10**10
    while abs(ok - ng) > 1:
        mid = (ok + ng) // 2
        if nm - a*mid >= 0: ok = mid
        else              : ng = mid
    return ok
##########################################################################
T = int(input())

for _ in range(T):

    N, M = map(int,input().split())

    k = bisect(N, 4)
    m = N - 4*k

    if M <= 4*k:
        if m > 0: print(k+1)
        else    : print(k)
    else:
        M -= 4*k
        M -= (8-m)
        k += 1

        l = bisect(M, 8)
        m = M - 8*l
        if m > 0: print(k+l+1)
        else    : print(k+l)
0