結果

問題 No.2921 Seated in Classroom
ユーザー poeMoon0416poeMoon0416
提出日時 2024-10-12 14:48:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 467 ms / 2,000 ms
コード長 313 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 76,616 KB
最終ジャッジ日時 2024-10-12 14:48:52
合計ジャッジ時間 3,168 ms
ジャッジサーバーID
(参考情報)
judge / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 438 ms
76,244 KB
testcase_01 AC 263 ms
76,424 KB
testcase_02 AC 225 ms
76,188 KB
testcase_03 AC 467 ms
76,308 KB
testcase_04 AC 451 ms
76,616 KB
testcase_05 AC 34 ms
53,100 KB
testcase_06 AC 34 ms
52,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

# 切り上げ除算
# 絶対値の切り下げ/切り上げを反転する
def div_ceil(num, div):
    return -(-num//div)

for _ in range(T):
    N, M = map(int, input().split())
    charge_row_num = div_ceil(N, 4)
    all_row_num = div_ceil(N+M, 8)
    print(max(charge_row_num, all_row_num))
0