結果

問題 No.597 concat
ユーザー LeonardoneLeonardone
提出日時 2017-11-24 22:56:50
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 11,246 ms
コンパイル使用メモリ 383,612 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-27 07:50:46
合計ジャッジ時間 12,109 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

// yukicoder My Practice
// author: Leonardone @ NEETSDKASU

fn main() {
    
    let mut stdin = String::new();
    {
        use std::io::Read;
        std::io::stdin().read_to_string(&mut stdin).expect("failed to read string");    
    }
    let mut stdin = stdin.split_whitespace();
    
    macro_rules! get {
        () => ( stdin.next().unwrap().parse().unwrap() );
        ($t:ty) => ( stdin.next().unwrap().parse::<$t>().unwrap() );
    }
    
    let n: u32 = get!();
      
    for _ in 0..n {
        print!("{}", get!(String));
    }
    
    println!();
}
0