結果

問題 No.2921 Seated in Classroom
ユーザー prd_xxxprd_xxx
提出日時 2024-10-12 14:43:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 469 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 76,548 KB
最終ジャッジ日時 2024-10-12 14:43:44
合計ジャッジ時間 3,489 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 405 ms
76,488 KB
testcase_01 AC 276 ms
76,072 KB
testcase_02 AC 213 ms
76,548 KB
testcase_03 AC 436 ms
76,276 KB
testcase_04 AC 469 ms
76,248 KB
testcase_05 AC 38 ms
53,084 KB
testcase_06 AC 37 ms
52,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(N,M):
    l = 0--N//4
    rem = l*8 - N
    if rem >= M:
        return l
    r = M - rem
    l += 0--r//8
    return l

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