結果

問題 No.2921 Seated in Classroom
ユーザー ymskskyymsksky
提出日時 2024-10-12 15:59:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 295 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 97,556 KB
最終ジャッジ日時 2024-10-12 15:59:16
合計ジャッジ時間 2,094 ms
ジャッジサーバーID
(参考情報)
judge / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 34 ms
51,712 KB
testcase_06 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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