提出 #39903401


ソースコード 拡げる

use proconio::input;

fn main() {
    input! {
        n: usize,
        a: [usize; n],
    };
    let ans = a
        .into_iter()
        .filter(|a_i| a_i % 2 == 0)
        .collect::<Vec<usize>>();
    for a_i in ans {
        println!("{}", a_i);
    }
}

提出情報

提出日時
問題 A - Filter
ユーザ bouzuya
言語 Rust (1.42.0)
得点 100
コード長 260 Byte
結果 AC
実行時間 7 ms
メモリ 2116 KiB

ジャッジ結果

セット名 Sample All
得点 / 配点 0 / 0 100 / 100
結果
AC × 3
AC × 9
セット名 テストケース
Sample 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt
All 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt, 01_random_03.txt, 01_random_04.txt, 02_max_05.txt, 02_max_06.txt, 03_random_07.txt, 03_random_08.txt
ケース名 結果 実行時間 メモリ
00_sample_00.txt AC 7 ms 1968 KiB
00_sample_01.txt AC 1 ms 1932 KiB
00_sample_02.txt AC 1 ms 1948 KiB
01_random_03.txt AC 2 ms 2016 KiB
01_random_04.txt AC 3 ms 2028 KiB
02_max_05.txt AC 1 ms 2052 KiB
02_max_06.txt AC 2 ms 2044 KiB
03_random_07.txt AC 1 ms 1932 KiB
03_random_08.txt AC 1 ms 2116 KiB