結果

問題 No.2921 Seated in Classroom
ユーザー AwashAmityOakAwashAmityOak
提出日時 2024-10-12 16:14:03
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 341 bytes
コンパイル時間 2,711 ms
コンパイル使用メモリ 243,428 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-12 16:14:14
合計ジャッジ時間 3,280 ms
ジャッジサーバーID
(参考情報)
judge / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:4:37: warning: 'T' is used uninitialized [-Wuninitialized]
    4 | #define rep(i, n) for (int i = 0; i < (int)n; ++i)
      |                                     ^
main.cpp:7:13: note: 'T' was declared here
    7 |         int T;
      |             ^

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define rep(i, n) for (int i = 0; i < (int)n; ++i)

signed main() {
	int T;
	rep(t, T) {
		int N, M;
		cin >> N >> M;
		int l = 0, r = N+M;
		while (l < r) {
			int m = l + (r - l) / 2;
			if (N <= 4*m && N+M <= 8*m) r = m;
			else l = m + 1;
		}
		cout << l << endl;
	}
}
0