結果

問題 No.5 数字のブロック
ユーザー tubo28tubo28
提出日時 2016-04-01 12:15:49
言語 Rust
(1.77.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 1,895 bytes
コンパイル時間 14,745 ms
コンパイル使用メモリ 378,948 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-29 07:06:18
合計ジャッジ時間 14,252 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main(){
    let mut sc = Scanner::new();
    let l = sc.i();
    let n = sc.i();
    let mut w = vec![];
    for _ in 0..n {
        w.push(sc.i());
    }
    w.sort();
    let mut ans = 0;
    let mut acc = 0;
    for e in w {
        if acc + e > l {
            break;
        }
        acc += e;
        ans += 1
    }
    println!("{}",ans);
}


#[allow(dead_code)]
struct Scanner {
    token_buffer : Vec<String>,
    index : usize,
}

#[allow(dead_code)]
impl Scanner {
    fn new() -> Scanner{
        Scanner { token_buffer: vec![], index: 0 }
    }

    fn fetch_token(&mut self) -> Result<String,&str> {
        if self.index < self.token_buffer.len() {
            self.index += 1;
            Ok(self.token_buffer[self.index - 1].clone())
        } else {
            let mut st = String::new();
            match std::io::stdin().read_line(&mut st) {
                Ok(l) => {
                    if l == 0 {
                        Err("End of file")
                    } else if st == "" {
                        self.next()
                    } else {
                        self.token_buffer = st.split_whitespace().map(|x| x.to_string() ).collect();
                        self.index = 0;
                        self.next()
                    }
                },
                Err(_) => Err("Falid to read line"),
            }
        }
    }

    fn next<T>(& mut self) -> Result<T,&str> where T: std::str::FromStr {
        match self.fetch_token() {
            Ok(r) => match r.parse::<T>() {
                Ok(r) => Ok(r),
                Err(_) => Err("Parse error"),
            },
            Err(e) => Err(e),
        }
    }

    fn i(& mut self) -> i32 {
        self.next::<i32>().unwrap()
    }
    fn f(& mut self) -> f64 {
        self.next::<f64>().unwrap()
    }
    fn s(& mut self) -> String {
        self.next::<String>().unwrap()
    }
}
0