結果

問題 No.2921 Seated in Classroom
ユーザー ymskskyymsksky
提出日時 2024-10-12 16:00:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 97,408 KB
最終ジャッジ日時 2024-10-12 16:00:32
合計ジャッジ時間 2,335 ms
ジャッジサーバーID
(参考情報)
judge / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 239 ms
93,316 KB
testcase_01 AC 180 ms
86,976 KB
testcase_02 AC 174 ms
84,020 KB
testcase_03 AC 248 ms
95,420 KB
testcase_04 AC 252 ms
97,408 KB
testcase_05 AC 34 ms
51,584 KB
testcase_06 AC 35 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
l = [list(map(int, input().split())) for _ in range(t)]
for n, m in l:
    # 充電必要組
    a = -(-n // 4)
    # 余分に不要組
    if n % 4 > 0:
        m = max(0, m - (4 - n % 4))
    # 中央に充電組同列まで
    m = max(0, m - 4 * a)
    # 残り
    a += -(-m // 8)
    print(a)
0