結果

問題 No.2921 Seated in Classroom
ユーザー yumechiyumechi
提出日時 2024-10-26 16:54:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 487 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 5,399 ms
コンパイル使用メモリ 81,772 KB
実行使用メモリ 78,368 KB
最終ジャッジ日時 2024-10-26 16:54:22
合計ジャッジ時間 4,077 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 421 ms
78,368 KB
testcase_01 AC 290 ms
77,392 KB
testcase_02 AC 243 ms
77,344 KB
testcase_03 AC 451 ms
78,300 KB
testcase_04 AC 487 ms
78,352 KB
testcase_05 AC 37 ms
52,460 KB
testcase_06 AC 32 ms
53,580 KB
権限があれば一括ダウンロードができます

ソースコード

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 mod > 0:
		m -= (4 - mod)
	m_ans = math.ceil(m/8)
	if m_ans > 0:
		t_ans += m_ans
	print(t_ans)
0