結果

問題 No.3022 縛りFizzBuzz (Easy)
ユーザー tubo28tubo28
提出日時 2017-03-31 23:19:19
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 11,664 ms
コンパイル使用メモリ 389,576 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-07 05:33:12
合計ジャッジ時間 12,419 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 0 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: use of deprecated method `core::str::<impl str>::trim_right`: superseded by `trim_end`
 --> src/main.rs:5:27
  |
5 |     let n: usize = buffer.trim_right().parse().unwrap();
  |                           ^^^^^^^^^^
  |
  = note: `#[warn(deprecated)]` on by default
help: replace the use of the deprecated method
  |
5 |     let n: usize = buffer.trim_end().parse().unwrap();
  |                           ~~~~~~~~

ソースコード

diff #

fn main() {
    use std::io::Read;
    let mut buffer = String::new();
    std::io::stdin().read_to_string(&mut buffer).unwrap();
    let n: usize = buffer.trim_right().parse().unwrap();
    let zero  = "".len();
    let one   = " ".len();
    let three = "   ".len();
    let five  = "     ".len();
    for i in zero..n {
        let i = i + one;
        if i % three == zero && i % five == zero {
            println!("FizzBuzz");
        } else if i % three == zero {
            println!("Fizz");
        } else if i % five == zero {
            println!("Buzz");
        } else {
            println!("{}", i);
        }
    }
}
0