結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー SaYaSaYa
提出日時 2015-11-03 21:26:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 701 bytes
コンパイル時間 3,241 ms
コンパイル使用メモリ 78,852 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-09-13 12:18:27
合計ジャッジ時間 3,800 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
54,124 KB
testcase_01 AC 139 ms
54,276 KB
testcase_02 AC 144 ms
54,032 KB
testcase_03 AC 147 ms
54,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int n = scanner.nextInt();

        IntStream.rangeClosed(1, n).forEach(i -> {
            boolean isFizz = (i % 3 == 0);
            boolean isBuzz = (i % 5 == 0);
            if (isFizz) {
                System.out.print("Fizz");
            }
            if (isBuzz) {
                System.out.print("Buzz");
            }
            if (!isFizz & !isBuzz) {
                System.out.print(i);
            }
            if (i != n) {
                System.out.println();
            }
        });
    }
}
0