結果

問題 No.2921 Seated in Classroom
ユーザー miya145592miya145592
提出日時 2024-10-12 14:43:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 97,520 KB
最終ジャッジ日時 2024-10-12 14:43:23
合計ジャッジ時間 2,209 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 179 ms
92,704 KB
testcase_01 AC 132 ms
86,004 KB
testcase_02 AC 114 ms
83,764 KB
testcase_03 AC 187 ms
94,432 KB
testcase_04 AC 209 ms
97,520 KB
testcase_05 AC 38 ms
52,040 KB
testcase_06 AC 37 ms
53,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
T = int(input())
NM = [list(map(int, input().split())) for _ in range(T)]
for n, m in NM:
    r = (n+3)//4
    amari = r*4-n
    nokori = m
    if nokori<=amari:
        print(r)
    else:
        nokori -= amari
        if nokori<=r*4:
            print(r)
        else:
            nokori-=r*4
            r2 = (nokori+7)//8
            print(r+r2)

0