結果

問題 No.2921 Seated in Classroom
ユーザー tnodinotnodino
提出日時 2024-09-15 12:42:14
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 12,471 ms
コンパイル使用メモリ 403,376 KB
実行使用メモリ 5,504 KB
最終ジャッジ日時 2024-10-12 08:49:54
合計ジャッジ時間 13,759 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
5,248 KB
testcase_01 AC 16 ms
5,248 KB
testcase_02 AC 12 ms
5,248 KB
testcase_03 AC 28 ms
5,504 KB
testcase_04 AC 20 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input;
use proconio::fastout;
use std::cmp::max;

#[fastout]
#[allow(non_snake_case)]
fn main() {
    input! {
        T: usize,
    }
    assert!(1 <= T && T <= 200_000);
    for _ in 0..T {
        input! {
            (N, M): (usize, usize),
        }
        assert!(1 <= N && N <= 1_000_000_000);
        assert!(1 <= M && M <= 1_000_000_000);
        println!("{}", max((N + 3) / 4, (N + M + 7) / 8));
    }
}
0