結果

問題 No.2921 Seated in Classroom
ユーザー 学ぶマン学ぶマン
提出日時 2024-10-12 14:49:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 580 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,656 KB
実行使用メモリ 87,460 KB
最終ジャッジ日時 2024-10-12 14:49:36
合計ジャッジ時間 1,855 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
85,508 KB
testcase_01 AC 101 ms
82,980 KB
testcase_02 AC 90 ms
79,544 KB
testcase_03 AC 139 ms
87,460 KB
testcase_04 AC 134 ms
86,528 KB
testcase_05 AC 38 ms
52,324 KB
testcase_06 AC 38 ms
53,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def kiriage(a, b):
    return (a+b-1)//b

T = int(input())

def solve(n:int, m:int):

    hitsuyo_row = kiriage(n, 4)
    # hitsuyo_列に n人を埋める
    nokori = hitsuyo_row * 8 - n

    # m人がnokori席で足りるなら hitsuyo_row が答え
    if m <= nokori:
        return hitsuyo_row
    else:
        # m > nokori
        nokori_n = m - nokori
        return hitsuyo_row + kiriage(nokori_n, 8)

ansl = []
for i in range(T):
    N, M = map(int, sys.stdin.readline().rstrip().split())
    ans = solve(N, M)
    ansl.append(ans)

print(*ansl, sep='\n')

0