結果

問題 No.2921 Seated in Classroom
ユーザー ルクルク
提出日時 2024-10-12 14:42:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 481 ms / 2,000 ms
コード長 132 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 76,648 KB
最終ジャッジ日時 2024-10-12 14:42:52
合計ジャッジ時間 3,331 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 399 ms
76,484 KB
testcase_01 AC 298 ms
76,196 KB
testcase_02 AC 222 ms
76,648 KB
testcase_03 AC 423 ms
76,320 KB
testcase_04 AC 481 ms
76,584 KB
testcase_05 AC 38 ms
52,904 KB
testcase_06 AC 38 ms
53,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
for i in range(n):
  a,b=map(int,input().split())
  k=(a+3)//4
  k2=k*4-a
  b-=k2
  b-=k*4
  print(max(k,k+(b+7)//8))
0