結果

問題 No.2921 Seated in Classroom
ユーザー atcoder8atcoder8
提出日時 2024-10-12 15:13:58
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 13,771 ms
コンパイル使用メモリ 377,536 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-10-12 15:14:17
合計ジャッジ時間 12,620 ms
ジャッジサーバーID
(参考情報)
judge5 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
7,552 KB
testcase_01 AC 16 ms
5,248 KB
testcase_02 AC 11 ms
5,248 KB
testcase_03 AC 27 ms
7,936 KB
testcase_04 AC 18 ms
6,528 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::{fastout, input};

#[fastout]
fn main() {
    input! {
        t: usize,
        nm: [(usize, usize); t],
    }

    let solve = |n: usize, m: usize| {
        let edge_length = (n + 3) / 4;
        let rem_chairs = 8 * edge_length - n;
        let extend_length = (m.saturating_sub(rem_chairs) + 7) / 8;

        edge_length + extend_length
    };

    for &(n, m) in &nm {
        println!("{}", solve(n, m));
    }
}
0