結果

問題 No.2921 Seated in Classroom
ユーザー InTheBloomInTheBloom
提出日時 2024-10-12 14:41:40
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 843 bytes
コンパイル時間 4,677 ms
コンパイル使用メモリ 172,416 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-10-12 14:41:49
合計ジャッジ時間 5,612 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 217 ms
11,648 KB
testcase_01 AC 120 ms
5,248 KB
testcase_02 AC 95 ms
9,984 KB
testcase_03 AC 229 ms
11,648 KB
testcase_04 AC 179 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main () {
    int T = readln.chomp.to!int;
    auto ans = new int[](T);
    foreach (i; 0..T) {
        int N, M; readln.read(N, M);

        bool f (int x) {
            // 充電席
            if (4L * x < N) return false;

            long rem_ch = 4L * x - N;
            return M <= rem_ch + 4L * x;
        }

        int ok = 10 ^^ 9, ng = 0;
        while (1 < abs(ok - ng)) {
            int mid = (ok + ng) / 2;
            if (f(mid)) {
                ok = mid;
            }
            else {
                ng = mid;
            }
        }

        ans[i] = ok;
    }

    foreach (a; ans) writeln(a);
}

void read (T...) (string S, ref T args) {
    import std.conv : to;
    import std.array : split;
    auto buf = S.split;
    foreach (i, ref arg; args) {
        arg = buf[i].to!(typeof(arg));
    }
}
0