結果

問題 No.1895 Mod 2
ユーザー Yukino DX.Yukino DX.
提出日時 2024-10-04 21:19:00
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 17 ms / 2,000 ms
コード長 713 bytes
コンパイル時間 12,385 ms
コンパイル使用メモリ 401,580 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-04 21:19:14
合計ジャッジ時間 12,430 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 16 ms
6,820 KB
testcase_02 AC 16 ms
6,820 KB
testcase_03 AC 16 ms
6,816 KB
testcase_04 AC 16 ms
6,820 KB
testcase_05 AC 17 ms
6,816 KB
testcase_06 AC 17 ms
6,816 KB
testcase_07 AC 17 ms
6,816 KB
testcase_08 AC 16 ms
6,820 KB
testcase_09 AC 16 ms
6,816 KB
testcase_10 AC 15 ms
6,816 KB
testcase_11 AC 16 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input;

fn main() {
    input! {
        t:usize,
    }

    for _ in 0..t {
        input! {
            l:usize,
            r:usize,
        }

        let ans = (2 + f(r) % 2 - f(l - 1) % 2) % 2;
        println!("{}", ans);
    }
}

const NG: usize = 100000000;
fn f(m: usize) -> usize {
    let is_ok0 = |x| x * x <= m;

    let is_ok1 = |x| x * x * 2 <= m;

    (nibutan(0, NG, is_ok0) % 2 + nibutan(0, NG, is_ok1) % 2) % 2
}

fn nibutan<F>(mut ok: usize, mut ng: usize, is_ok: F) -> usize
where
    F: Fn(usize) -> bool,
{
    while ng - ok > 1 {
        let mid = (ok + ng) / 2;
        if is_ok(mid) {
            ok = mid;
        } else {
            ng = mid;
        }
    }

    ok
}
0