結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー shiyo1023shiyo1023
提出日時 2019-09-02 04:13:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 623 bytes
コンパイル時間 2,242 ms
コンパイル使用メモリ 73,948 KB
実行使用メモリ 41,212 KB
最終ジャッジ日時 2024-05-07 19:25:32
合計ジャッジ時間 3,129 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,044 KB
testcase_01 AC 117 ms
41,168 KB
testcase_02 AC 121 ms
41,212 KB
testcase_03 AC 109 ms
41,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);

        int N = sc.nextInt();
        // int b = sc.nextInt();

        for(int i = 1; i <= N; i++){
            if(i%3==0){
                System.out.print("Fizz");
            }
            if(i%5==0){
                System.out.print("Buzz");
            }
            if(i%3!=0 && i%5!=0){
                System.out.print(i);
            }
            System.out.println();
        }
    }
}
0