結果

問題 No.2921 Seated in Classroom
ユーザー AwashAmityOakAwashAmityOak
提出日時 2024-10-12 15:50:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 217 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-10-12 15:50:42
合計ジャッジ時間 12,185 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

def solve():
	N, M = map(int, input().split())
	l, r = 0, N+M
	while l < r:
		m = l + (r - l) // 2
		if M <= 4*m and N <= 8*m - M:
			r = m
		else:
			l = m + 1
	print(l)

T = int(input())
for t in range(T):
	solve()
0