結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー k__umek__ume
提出日時 2019-04-28 18:23:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 411 bytes
コンパイル時間 2,515 ms
コンパイル使用メモリ 74,368 KB
実行使用メモリ 36,964 KB
最終ジャッジ日時 2024-05-09 22:39:32
合計ジャッジ時間 2,881 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
36,904 KB
testcase_01 AC 54 ms
36,668 KB
testcase_02 AC 58 ms
36,964 KB
testcase_03 AC 56 ms
36,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
    public static void main(String... args) throws Exception {
        int N = Integer.parseInt(new BufferedReader(new InputStreamReader(System.in)).readLine());
        for (int i = 1; i <= N; i++) {
            System.out.println(i % 15 == 0 ? "FizzBuzz" : i % 3 == 0 ? "Fizz" : i % 5 == 0 ? "Buzz" : i);
        }
    }
}
0