結果
問題 | No.2921 Seated in Classroom |
ユーザー | AwashAmityOak |
提出日時 | 2024-10-12 15:50:19 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 217 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-12 15:50:42 |
合計ジャッジ時間 | 12,185 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | TLE | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
ソースコード
def solve(): N, M = map(int, input().split()) l, r = 0, N+M while l < r: m = l + (r - l) // 2 if M <= 4*m and N <= 8*m - M: r = m else: l = m + 1 print(l) T = int(input()) for t in range(T): solve()