結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-26 20:17:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 558 bytes
コンパイル時間 3,443 ms
コンパイル使用メモリ 76,016 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-11-21 20:08:44
合計ジャッジ時間 4,517 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,076 KB
testcase_01 AC 135 ms
41,488 KB
testcase_02 AC 126 ms
40,268 KB
testcase_03 AC 134 ms
41,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No9002 {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        Integer num = s.nextInt();
        for (int i = 1; i <= num; i++) {
            String out;
            if (i % 15 == 0) {
                out = "FizzBuzz";
            } else if (i % 5 == 0) {
                out = "Buzz";
            } else if (i % 3 == 0) {
                out = "Fizz";
            } else {
                out = "" + i;
            }
            System.out.println(out);
        }
    }
}
0