結果

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

テストケース

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