Submission #48714321


Source Code Expand

use proconio::{input, marker::Chars};

fn main() {
    input! {
        _n: usize,
        m: usize,
        s: Chars,
    };

    let mut ans = 0_usize;
    let mut used_m = 0_usize;
    let mut used_t = 0_usize;
    for s_i in s {
        match s_i {
            '0' => {
                used_m = 0;
                used_t = 0;
            }
            '1' => {
                if used_m < m {
                    used_m += 1;
                } else {
                    used_t += 1;
                }
            }
            '2' => {
                used_t += 1;
            }
            _ => unreachable!(),
        }
        ans = ans.max(used_t);
    }
    println!("{}", ans);
}

Submission Info

Submission Time
Task C - T-shirts
User bouzuya
Language Rust (rustc 1.70.0)
Score 300
Code Size 691 Byte
Status AC
Exec Time 1 ms
Memory 2068 KiB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 3
AC × 43
Set Name Test Cases
Sample example_00.txt, example_01.txt, example_02.txt
All example_00.txt, example_01.txt, example_02.txt, hand_00.txt, hand_01.txt, hand_02.txt, hand_03.txt, hand_04.txt, hand_05.txt, hand_06.txt, hand_07.txt, hand_08.txt, hand_09.txt, random_00.txt, random_01.txt, random_02.txt, random_03.txt, random_04.txt, random_05.txt, random_06.txt, random_07.txt, random_08.txt, random_09.txt, random_10.txt, random_11.txt, random_12.txt, random_13.txt, random_14.txt, random_15.txt, random_16.txt, random_17.txt, random_18.txt, random_19.txt, random_20.txt, random_21.txt, random_22.txt, random_23.txt, random_24.txt, random_25.txt, random_26.txt, random_27.txt, random_28.txt, random_29.txt
Case Name Status Exec Time Memory
example_00.txt AC 1 ms 1848 KiB
example_01.txt AC 1 ms 1912 KiB
example_02.txt AC 0 ms 1956 KiB
hand_00.txt AC 0 ms 1888 KiB
hand_01.txt AC 0 ms 1888 KiB
hand_02.txt AC 1 ms 1880 KiB
hand_03.txt AC 1 ms 2064 KiB
hand_04.txt AC 0 ms 1920 KiB
hand_05.txt AC 1 ms 2068 KiB
hand_06.txt AC 1 ms 1788 KiB
hand_07.txt AC 1 ms 1828 KiB
hand_08.txt AC 1 ms 1780 KiB
hand_09.txt AC 0 ms 1784 KiB
random_00.txt AC 0 ms 1816 KiB
random_01.txt AC 0 ms 1916 KiB
random_02.txt AC 1 ms 2052 KiB
random_03.txt AC 1 ms 1988 KiB
random_04.txt AC 1 ms 1924 KiB
random_05.txt AC 0 ms 1896 KiB
random_06.txt AC 1 ms 2008 KiB
random_07.txt AC 1 ms 1848 KiB
random_08.txt AC 1 ms 1976 KiB
random_09.txt AC 0 ms 1904 KiB
random_10.txt AC 1 ms 1844 KiB
random_11.txt AC 0 ms 2048 KiB
random_12.txt AC 0 ms 1848 KiB
random_13.txt AC 1 ms 1904 KiB
random_14.txt AC 1 ms 1912 KiB
random_15.txt AC 1 ms 1900 KiB
random_16.txt AC 0 ms 1840 KiB
random_17.txt AC 0 ms 2056 KiB
random_18.txt AC 0 ms 1716 KiB
random_19.txt AC 1 ms 1848 KiB
random_20.txt AC 0 ms 1924 KiB
random_21.txt AC 0 ms 1924 KiB
random_22.txt AC 0 ms 1908 KiB
random_23.txt AC 1 ms 1844 KiB
random_24.txt AC 1 ms 2032 KiB
random_25.txt AC 0 ms 1916 KiB
random_26.txt AC 0 ms 1784 KiB
random_27.txt AC 0 ms 1916 KiB
random_28.txt AC 0 ms 1904 KiB
random_29.txt AC 1 ms 1992 KiB