RustでAtCoderのインタラクティブ問題の入出力方法がわからなかったのでメモ

proconio クレートの [fastout] は使わないで下のようにすれば良い。

use std::io::BufReader;
 
use proconio::{input, source::line::LineSource};
 
fn main() {
    let stdin = std::io::stdin();
    let mut source = LineSource::new(BufReader::new(stdin));
 
    input! {
        from &mut source,
        n: usize,
    }
    ...(省略)...
}

https://atcoder.jp/contests/abc269/submissions/34963751