結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー Ryugo AbeRyugo Abe
提出日時 2016-12-15 10:46:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 5,000 ms
コード長 681 bytes
コンパイル時間 2,460 ms
コンパイル使用メモリ 74,236 KB
実行使用メモリ 41,508 KB
最終ジャッジ日時 2024-05-07 14:45:34
合計ジャッジ時間 3,601 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,116 KB
testcase_01 AC 140 ms
41,244 KB
testcase_02 AC 144 ms
41,312 KB
testcase_03 AC 150 ms
41,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    static final String FIZZ = "Fizz";
    static final String BUZZ = "Buzz";

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        // N(1≤N≤100)
        int num = sc.nextInt();
        for (int i=1; i<=num; i++) {
            if (i % 3 == 0 && i % 5 == 0) {
                System.out.print(FIZZ + BUZZ);
            } else if (i % 3 == 0) {
                System.out.print(FIZZ);
            } else if (i % 5 == 0) {
                System.out.print(BUZZ);
            } else {
                System.out.print(i);
            }
            System.out.println();
        }

    }
}
0