結果

問題 No.2921 Seated in Classroom
ユーザー tnakao0123tnakao0123
提出日時 2024-10-13 16:19:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 43,520 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-13 16:19:50
合計ジャッジ時間 1,566 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
5,248 KB
testcase_01 AC 44 ms
5,248 KB
testcase_02 AC 35 ms
5,248 KB
testcase_03 AC 83 ms
5,248 KB
testcase_04 AC 52 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2921.cc:  No.2921 Seated in Classroom - yukicoder
 */

#include<cstdio>
#include<algorithm>

using namespace std;

/* constant */

/* typedef */

using ll = long long;

/* global variables */

/* subroutines */

/* main */

int main() {
  int tn;
  scanf("%d", &tn);

  while (tn--) {
    int n, m;
    scanf("%d%d", &n, &m);

    int x0 = 0, x1 = n + m;
    while (x0 + 1 < x1) {
      int x = ((ll)x0 + x1) / 2;
      if ((ll)x * 4 >= n && (ll)x * 8 >= n + m) x1 = x;
      else x0 = x;
    }

    printf("%d\n", x1);
  }

  return 0;
}
0