結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー resqmalsresqmals
提出日時 2015-04-15 17:31:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 512 bytes
コンパイル時間 2,150 ms
コンパイル使用メモリ 78,104 KB
実行使用メモリ 54,108 KB
最終ジャッジ日時 2024-07-04 14:35:46
合計ジャッジ時間 2,905 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        String line = scanner.nextLine();
        int num = Integer.parseInt(line);
        if (num % 3 == 0 && num % 5 == 0)
            System.out.println("FizzBuzz");
        else if (num % 3 == 0)
            System.out.println("Fizz");
        else if (num % 5 == 0)
            System.out.println("Buzz");
        else
            System.out.println(num);
    }
}
0