結果

問題 No.593 4進FizzBuzz
ユーザー taotao54321taotao54321
提出日時 2019-12-13 18:49:14
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 693 bytes
コンパイル時間 13,212 ms
コンパイル使用メモリ 380,324 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-06-27 13:03:18
合計ジャッジ時間 16,847 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 14 ms
11,672 KB
testcase_17 AC 12 ms
11,648 KB
testcase_18 AC 12 ms
11,648 KB
testcase_19 WA -
testcase_20 AC 12 ms
11,648 KB
testcase_21 AC 13 ms
11,648 KB
testcase_22 WA -
testcase_23 AC 12 ms
11,756 KB
testcase_24 AC 11 ms
11,520 KB
testcase_25 AC 13 ms
11,648 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 14 ms
11,648 KB
testcase_29 WA -
testcase_30 AC 13 ms
11,644 KB
testcase_31 AC 12 ms
11,648 KB
testcase_32 AC 12 ms
11,648 KB
testcase_33 WA -
testcase_34 AC 12 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io;

fn is_mul3(v: &[char]) -> bool {
    v.iter().fold(0, |sum,c| sum + c.to_digit(4).unwrap()) % 3 == 0
}

fn is_mul5(v: &[char]) -> bool {
    v.iter().rev().enumerate()
        .fold(0, |sum,(i,c)| sum + (c.to_digit(4).unwrap() as i32) * if i%2==0 { -1 } else { 1 }) % 5 == 0
}

fn main() {
    let mut s = String::new();
    io::stdin().read_line(&mut s).unwrap();
    let v: Vec<_> = s.trim().chars().collect();

    let mul3 = is_mul3(&v);
    let mul5 = is_mul5(&v);

    if mul3 && mul5 {
        println!("FizzBuzz");
    }
    else if mul3 {
        println!("Fizz");
    }
    else if mul5 {
        println!("Buzz");
    }
    else {
        println!("{}\n", s);
    }
}
0