結果

問題 No.593 4進FizzBuzz
ユーザー phsplsphspls
提出日時 2020-05-07 22:24:11
言語 Rust
(1.77.0)
結果
WA  
実行時間 -
コード長 482 bytes
コンパイル時間 5,854 ms
コンパイル使用メモリ 139,248 KB
実行使用メモリ 4,508 KB
最終ジャッジ日時 2023-09-16 08:07:22
合計ジャッジ時間 3,576 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

fn main() {
    let mut n = String::new();
    std::io::stdin().read_line(&mut n).ok();
    let a: usize = n.trim().chars().rev().enumerate()
        .map(|pair| (pair.1).to_string().parse::<usize>().unwrap() * (1 << pair.0 << pair.0))
        .sum();
    if a % 3 == 0 || a % 5 == 0 {
        if a%3 == 0 {
            print!("Fizz");
        }
        if a%5 == 0 {
            print!("Buzz");
        }
        println!();
    } else {
        println!("{}", n.trim());
    }
}
0