結果
問題 | No.2921 Seated in Classroom |
ユーザー | startcpp |
提出日時 | 2024-10-12 16:23:35 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 360 ms / 2,000 ms |
コード長 | 499 bytes |
コンパイル時間 | 644 ms |
コンパイル使用メモリ | 82,516 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-12 16:23:40 |
合計ジャッジ時間 | 3,045 ms |
ジャッジサーバーID (参考情報) |
judge / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 313 ms
5,248 KB |
testcase_01 | AC | 209 ms
5,248 KB |
testcase_02 | AC | 141 ms
5,248 KB |
testcase_03 | AC | 360 ms
5,248 KB |
testcase_04 | AC | 322 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <functional> #include <vector> #include <stack> #include <queue> #include <set> #include <map> #include <tuple> #include <cstdio> #include <cmath> #include <cassert> #define rep(i, n) for(i = 0; i < n; i++) #define int long long using namespace std; signed main() { int T; cin >> T; while (T--) { int n, m; cin >> n >> m; cout << max((n + 3) / 4, (n + m + 7) / 8) << endl; } return 0; }