結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー halshiphalship
提出日時 2020-10-19 17:25:02
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 622 bytes
コンパイル時間 13,710 ms
コンパイル使用メモリ 390,648 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-21 07:59:20
合計ジャッジ時間 14,514 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::{self, BufRead, BufReader, BufWriter, Write};

fn main() {
    let stdin = io::stdin();
    let mut stdin = BufReader::new(stdin.lock());
    let stdout = io::stdout();
    let mut stdout = BufWriter::new(stdout.lock());

    let ab: Vec<u32> = read_line(&mut stdin)
        .split_whitespace()
        .filter_map(|s| s.parse().ok())
        .collect();
    let s = read_line(&mut stdin);

    writeln!(&mut stdout, "{} {}", ab[0] + ab[1], s).unwrap();
}

fn read_line<R: BufRead>(reader: &mut R) -> String {
    let mut buf = String::new();
    reader.read_line(&mut buf).unwrap();
    buf.pop();
    buf
}
0