結果
問題 | No.9002 FizzBuzz(テスト用) |
ユーザー | inux39 |
提出日時 | 2017-07-24 21:02:49 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 429 bytes |
コンパイル時間 | 23,770 ms |
コンパイル使用メモリ | 387,632 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-09 13:40:16 |
合計ジャッジ時間 | 12,603 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,820 KB |
ソースコード
fn main(){ let input = scan(); let n: usize = input.parse().unwrap(); fizzbuzz(n); } fn fizzbuzz(n: usize) { for i in 1..n + 1 { if i % 3 == 0 { print!("Fizz"); } if i % 5 == 0 { print!("Buzz"); } if i % 3 == 0 || i % 5 == 0 { println!(""); continue; } println!("{}", i); } } fn scan() -> String { let mut s = String::new(); std::io::stdin().read_line(&mut s).unwrap(); s.trim().to_string() }