結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,404 ms
10,496 KB
testcase_02 AC 1,053 ms
10,496 KB
testcase_03 TLE -
testcase_04 AC 1,598 ms
10,496 KB
testcase_05 AC 28 ms
10,368 KB
testcase_06 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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