結果
問題 | No.2921 Seated in Classroom |
ユーザー | AwashAmityOak |
提出日時 | 2024-10-12 16:14:36 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 379 ms / 2,000 ms |
コード長 | 352 bytes |
コンパイル時間 | 2,900 ms |
コンパイル使用メモリ | 245,116 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-12 16:14:41 |
合計ジャッジ時間 | 5,267 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 371 ms
5,248 KB |
testcase_01 | AC | 214 ms
5,248 KB |
testcase_02 | AC | 153 ms
5,248 KB |
testcase_03 | AC | 379 ms
5,248 KB |
testcase_04 | AC | 359 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
ソースコード
#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; cin >> 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; } }