結果

問題 No.2921 Seated in Classroom
ユーザー naut3naut3
提出日時 2024-10-12 17:31:26
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 1,116 bytes
コンパイル時間 15,320 ms
コンパイル使用メモリ 386,876 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-12 17:31:45
合計ジャッジ時間 12,007 ms
ジャッジサーバーID
(参考情報)
judge5 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
6,820 KB
testcase_01 AC 14 ms
6,816 KB
testcase_02 AC 10 ms
6,816 KB
testcase_03 AC 26 ms
6,820 KB
testcase_04 AC 16 ms
6,820 KB
testcase_05 AC 0 ms
6,816 KB
testcase_06 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: value assigned to `N` is never read
  --> src/main.rs:46:9
   |
46 |         N = 0;
   |         ^
   |
   = help: maybe it is overwritten before being read?
   = note: `#[warn(unused_assignments)]` on by default

ソースコード

diff #

#![allow(non_snake_case, unused_must_use, unused_imports)]
use std::io::{self, prelude::*};

fn main() {
    let (stdin, stdout) = (io::read_to_string(io::stdin()).unwrap(), io::stdout());
    let (mut stdin, mut buffer) = (stdin.split_whitespace(), io::BufWriter::new(stdout.lock()));
    for _ in 0..stdin.next().unwrap().parse::<usize>().unwrap() {
        solve(&mut stdin, &mut buffer);
    }
}

fn solve(stdin: &mut std::str::SplitWhitespace, buffer: &mut io::BufWriter<io::StdoutLock>) {
    macro_rules! input {
        ($t: ty) => {
            stdin.next().unwrap().parse::<$t>().unwrap()
        };
        ($t: ty, $n: expr) => {
            (0..$n).map(|_| input!($t)).collect::<Vec<_>>()
        };
    }

    let mut N = input!(isize);
    let mut M = input!(isize);

    let mut ans = 0;
    let p = N / 4;
    N -= 4 * p;

    if M >= 4 * p {
        M -= 4 * p;
    } else {
        M = 0;
    }

    ans += p;

    if N > 0 {
        ans += 1;

        M -= 8 - N;

        if M < 0 {
            M = 0;
        }

        N = 0;
    }

    ans += (M + 7) / 8;

    writeln!(buffer, "{}", ans);
}
0