結果

問題 No.207 世界のなんとか
ユーザー ta60143ta60143
提出日時 2018-10-24 08:57:44
言語 Rust
(1.77.0 + proconio)
結果
RE  
実行時間 -
コード長 787 bytes
コンパイル時間 12,863 ms
コンパイル使用メモリ 383,644 KB
実行使用メモリ 813,236 KB
最終ジャッジ日時 2024-11-19 05:08:59
合計ジャッジ時間 17,825 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 MLE -
testcase_04 RE -
testcase_05 MLE -
testcase_06 AC 33 ms
6,688 KB
testcase_07 AC 2 ms
6,692 KB
testcase_08 AC 2 ms
6,692 KB
testcase_09 AC 2 ms
6,688 KB
testcase_10 WA -
testcase_11 AC 2 ms
6,688 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 RE -
testcase_15 RE -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 1 ms
6,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io;

fn main() {
    let mut input = String::new();
    io::stdin().read_line(&mut input).unwrap();
    
    let mut input = input.trim().split_whitespace();
    let a: u32 = input.next().unwrap().parse().unwrap();
    let b: u32 = input.next().unwrap().parse().unwrap();

    let mut vec = vec![1u32; b as usize];

    for i in a..b {
        vec[i as usize] = i;
    }

    let iterator = 
        vec.into_iter()
        .filter(|x| x % 3 == 0 || is_including_3(*x));

    for i in iterator {
        println!("{}", i);
    }
}

fn is_including_3(num: u32) -> bool {
    let mut n = num;

    loop {
        if n % 10 == 3 {
            return true;
        }
        else if n == 0 {
            return false;
        }
        else {
            n /= 10;
        }
    }
}
0