結果

問題 No.2921 Seated in Classroom
ユーザー yumechiyumechi
提出日時 2024-10-26 16:53:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 225 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 78,364 KB
最終ジャッジ日時 2024-10-26 16:53:30
合計ジャッジ時間 3,980 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import math
for _ in [0]*int(input()):
	n, m = map(int, input().split(" "))
	t_ans, mod = math.ceil(n/4), n%4
	m -= (t_ans * 4)
	if n > 0:
		m -= (4 - mod)
	m_ans = math.ceil(m/8)
	if m_ans > 0:
		t_ans += m_ans
	print(t_ans)
0