結果

問題 No.2921 Seated in Classroom
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-12 14:43:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 545 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-10-12 14:43:36
合計ジャッジ時間 3,396 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 407 ms
76,416 KB
testcase_01 AC 280 ms
76,588 KB
testcase_02 AC 259 ms
76,160 KB
testcase_03 AC 473 ms
76,192 KB
testcase_04 AC 545 ms
76,800 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 39 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for _ in range(T):
  n,m=map(int,input().split())
  na=n//4
  nb=n%4
  m-=4*na
  if m<=0:
    print(na+(nb>0))
    continue
  m-=4+4-nb
  if m<=0:
    print(na+1)
    continue
  print(na+1+(m+7)//8)
0