結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
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 -= n
	m_ans = math.ceil(m/8)
	if m_ans > 0:
		t_ans += m_ans
	print(t_ans)
0