結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー oyafusooyafuso
提出日時 2019-03-11 10:16:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 753 bytes
コンパイル時間 2,069 ms
コンパイル使用メモリ 71,020 KB
実行使用メモリ 55,992 KB
最終ジャッジ日時 2023-09-05 20:01:59
合計ジャッジ時間 3,146 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import java.util.*;

class Main {

	private static final String SPLIT_STR = " ";
	private static final String STR_CASE_3 = "Fizz";
	private static final String STR_CASE_5 = "Buzz";

	public static void main(String[] args) {
		// Scanner生成
		Scanner sc = new Scanner(System.in);
		// 入力設定
		String input = sc.nextLine();
		int num = Integer.parseInt(input);
		// Scannerクローズ
		sc.close();

		// 変数設定
		String result = "";
		int remain3 = num % 3;
		int remain5 = num % 5;
		// メイン処理
		if (remain3 == 0 && remain5 == 0) {
			result = STR_CASE_3 + STR_CASE_5;
		} else if (remain3 == 0) {
			result = STR_CASE_3;
		} else if (remain5 == 0) {
			result = STR_CASE_5;
		}

		// 出力
		System.out.println(result);
	}
}
0