結果

問題 No.3022 縛りFizzBuzz (Easy)
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-02-07 23:52:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 2,682 ms
コンパイル使用メモリ 79,164 KB
実行使用メモリ 41,736 KB
最終ジャッジ日時 2024-06-26 08:05:14
合計ジャッジ時間 4,137 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,216 KB
testcase_01 AC 143 ms
41,716 KB
testcase_02 AC 143 ms
41,736 KB
testcase_03 AC 147 ms
41,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.stream.IntStream;

public class Main {
    static int zero  = 'a' - 'a';
    static int one   = 'b' - 'a';
    static int three = 'd' - 'a';
    static int five  = 'f' - 'a';
    
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        int n = stdin.nextInt();
       IntStream.rangeClosed(one, n).mapToObj(Main::fizzbuzz).forEach(System.out::println);
    }
    
    public static String fizzbuzz(int i) {
        if (i % three == zero && i % five == zero)  return "FizzBuzz";
        if (i % three == zero)  return "Fizz";
        if (i % five == zero)  return "Buzz";
        return String.valueOf(i);
    }
}
0