結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー mochi8kmochi8k
提出日時 2016-03-20 10:31:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 473 bytes
コンパイル時間 3,403 ms
コンパイル使用メモリ 76,000 KB
実行使用メモリ 54,200 KB
最終ジャッジ日時 2024-10-01 09:22:13
合計ジャッジ時間 4,490 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,804 KB
testcase_01 AC 136 ms
53,648 KB
testcase_02 AC 127 ms
52,796 KB
testcase_03 AC 144 ms
54,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class FizzBuzz {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		if (sc.hasNextInt()) {
			int inputNumber = sc.nextInt();
			for (int i = 1; i <= inputNumber; ++i) {
				String word = "";
				if (i % 3 == 0) {
					word += "Fizz";
				}

				if (i % 5 == 0) {
					word += "Buzz";
				}

				if (word == "") {
					System.out.println(i);
				} else {
					System.out.println(word);
				}
			}
		}
	}

}
0