結果

問題 No.2921 Seated in Classroom
ユーザー masamasa
提出日時 2024-10-12 14:53:21
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 3,374 ms
コンパイル使用メモリ 129,124 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 14:53:33
合計ジャッジ時間 4,067 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <string>
#include <utility>
#include <tuple>
#include <set>
#include <map>
#include <cassert>

using namespace std;

int main() {
	int t;
	cin >> t;

	vector<int> vn(t), vm(t);
	for (int i = 0; i < t; i++) {
		cin >> vn[i] >> vm[i];
	}

	auto solve = [&](int n, int m) -> int {
		if (m >= n) {
			return (n + m + 8 - 1) / 8;
		} else {
			return (n + 4 - 1) / 4;
		}
	};

	for (int i = 0; i < t; i++) {
		auto ans = solve(vn[i], vm[i]);
		cout << ans << endl;
	}
	return 0;
}
0