結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー _k_a_n_i__k_a_n_i_
提出日時 2015-04-23 17:31:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 571 bytes
コンパイル時間 2,275 ms
コンパイル使用メモリ 74,504 KB
実行使用メモリ 54,076 KB
最終ジャッジ日時 2024-07-05 00:30:38
合計ジャッジ時間 3,168 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,028 KB
testcase_01 AC 135 ms
53,920 KB
testcase_02 AC 140 ms
54,004 KB
testcase_03 AC 141 ms
54,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main
{
    private final static Main main = new Main();

    public static void main(String[] args)
    {
        long l = System.currentTimeMillis();
        main.solve();
        //System.out.println("処理時間:" + (System.currentTimeMillis() - l));
    }

    private void solve()
    {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        for(int i=1; i<=n; ++i)
        {
            System.out.println(i%15 == 0 ? "FizzBuzz" : i%3 == 0 ? "Fizz" : i%5 == 0 ? "Buzz" : i);
        }
    }
}
0