結果

問題 No.1942 Leading zero
ユーザー phsplsphspls
提出日時 2022-09-23 15:40:19
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 15 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 12,737 ms
コンパイル使用メモリ 378,676 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-06-01 18:20:10
合計ジャッジ時間 12,912 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

fn main() {
    let mut n = String::new();
    std::io::stdin().read_line(&mut n).ok();
    let n: usize = n.trim().parse().unwrap();
    let result = (0..n).map(|_| {
            let mut temp = String::new();
            std::io::stdin().read_line(&mut temp).ok();
            let temp: usize = temp.trim().parse().unwrap();
            temp
        })
        .collect::<Vec<_>>();

    for &v in result.iter() {
        println!("{}", v);
    }
}
0