結果
問題 | No.2921 Seated in Classroom |
ユーザー | AwashAmityOak |
提出日時 | 2024-10-12 15:49:38 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 212 bytes |
コンパイル時間 | 111 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-10-12 15:49:57 |
合計ジャッジ時間 | 1,038 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
ソースコード
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 = input() for t in range(T): solve()