結果

問題 No.2921 Seated in Classroom
ユーザー Meso MesoMeso Meso
提出日時 2024-10-13 09:07:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,448 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-13 09:07:45
合計ジャッジ時間 7,295 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,188 ms
10,880 KB
testcase_01 AC 737 ms
10,752 KB
testcase_02 AC 573 ms
10,880 KB
testcase_03 AC 1,308 ms
10,752 KB
testcase_04 AC 1,448 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

t = int(input())

for i in range(t):
    n, m = map(int, input().split())
    a = n / 4
    b = 8 * a - n
    c = max(m - b, 0)
    d = c / 8
    print(math.ceil(a + d))
0