結果

問題 No.2921 Seated in Classroom
ユーザー nouka28nouka28
提出日時 2024-09-07 11:43:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 498 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 76,644 KB
最終ジャッジ日時 2024-09-07 11:43:36
合計ジャッジ時間 4,611 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 407 ms
76,620 KB
testcase_01 AC 270 ms
76,644 KB
testcase_02 AC 229 ms
76,564 KB
testcase_03 AC 481 ms
76,376 KB
testcase_04 AC 498 ms
76,516 KB
testcase_05 AC 34 ms
53,148 KB
testcase_06 AC 34 ms
52,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())

while t:
    t-=1
    m,n=map(int,input().split())
    q,r=m//4,m%4
    n=max(0,n-4*q)
    if n==0:
        print(q+(r>0))
        continue
    if n<=8-r:
        print(q+1)
        continue
    n-=8-r
    print(q+1+(n+7)//8)
0