結果
| 問題 | 
                            No.8075 114101097100032118101114116105099097108108121
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2021-04-01 22:33:25 | 
| 言語 | Rust  (1.83.0 + proconio)  | 
                    
| 結果 | 
                             
                                RE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 1,501 bytes | 
| コンパイル時間 | 18,335 ms | 
| コンパイル使用メモリ | 386,704 KB | 
| 実行使用メモリ | 6,820 KB | 
| 最終ジャッジ日時 | 2024-12-21 06:48:24 | 
| 合計ジャッジ時間 | 16,768 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | WA * 8 RE * 2 | 
ソースコード
struct Scanner {
    bytes: std::io::Bytes<std::io::BufReader<std::io::Stdin>>,
}
impl Scanner {
    fn new() -> Self {
        Self {
            bytes: std::io::Read::bytes(std::io::BufReader::new(std::io::stdin())),
        }
    }
    fn next(&mut self) -> String {
        self.bytes
            .by_ref()
            .map(|r| r.unwrap() as char)
            .skip_while(|c| c.is_whitespace())
            .take_while(|c| !c.is_whitespace())
            .collect()
    }
}
macro_rules! input {
    ($sc:expr, $($r:tt)*) => {
        input_inner!{$sc, $($r)*}
    };
}
macro_rules! input_inner {
    ($sc:expr) => {};
    ($sc:expr, ) => {};
    ($sc:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($sc, $t);
        input_inner!{$sc $($r)*}
    };
}
macro_rules! read_value {
    ($sc:expr, ( $($t:tt),* )) => {
        ( $(read_value!($sc, $t)),* )
    };
    ($sc:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($sc, $t)).collect::<Vec<_>>()
    };
    ($sc:expr, Chars) => {
        read_value!($sc, String).chars().collect::<Vec<char>>()
    };
    ($sc:expr, Usize1) => {
        read_value!($sc, usize) - 1
    };
    ($sc:expr, $t:ty) => {
        $sc.next().parse::<$t>().expect("Parse error")
    };
}
fn main() {
    let mut sc = Scanner::new();
    let ans = solve(&mut sc);
    println!("{}", ans);
}
fn solve(sc: &mut Scanner) -> i64 {
    input! {
        sc,
        s: Chars,
    }
    assert!(s.len() <= 5);
    0
}