結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー GchansanjouGchansanjou
提出日時 2018-02-12 02:05:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 1,000 ms
コード長 821 bytes
コンパイル時間 3,208 ms
コンパイル使用メモリ 74,200 KB
実行使用メモリ 37,100 KB
最終ジャッジ日時 2024-06-28 18:56:37
合計ジャッジ時間 5,766 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,804 KB
testcase_01 AC 51 ms
36,764 KB
testcase_02 AC 49 ms
36,528 KB
testcase_03 AC 50 ms
37,048 KB
testcase_04 AC 50 ms
36,944 KB
testcase_05 AC 50 ms
37,056 KB
testcase_06 AC 51 ms
36,640 KB
testcase_07 AC 50 ms
36,684 KB
testcase_08 AC 50 ms
36,924 KB
testcase_09 AC 49 ms
36,512 KB
testcase_10 AC 50 ms
36,724 KB
testcase_11 AC 50 ms
37,060 KB
testcase_12 AC 49 ms
36,832 KB
testcase_13 AC 50 ms
37,040 KB
testcase_14 AC 50 ms
36,804 KB
testcase_15 AC 50 ms
36,572 KB
testcase_16 AC 51 ms
37,060 KB
testcase_17 AC 49 ms
36,640 KB
testcase_18 AC 50 ms
37,100 KB
testcase_19 AC 50 ms
36,780 KB
testcase_20 AC 50 ms
36,640 KB
testcase_21 AC 50 ms
36,544 KB
testcase_22 AC 49 ms
36,632 KB
testcase_23 AC 49 ms
36,632 KB
testcase_24 AC 51 ms
36,764 KB
testcase_25 AC 50 ms
36,892 KB
testcase_26 AC 48 ms
36,516 KB
testcase_27 AC 50 ms
37,044 KB
testcase_28 AC 50 ms
36,844 KB
testcase_29 AC 48 ms
36,764 KB
testcase_30 AC 48 ms
36,744 KB
testcase_31 AC 48 ms
36,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukiCoder;

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

public class No00637 {

	public static void main(String[] args) {
		BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));
		String[] input = new String[5];
		StringBuilder builder = new StringBuilder();

		try {
			input = bufferedReader.readLine().split(" ");

			for(int i = 0 ; i < input.length ; i++) {
				int n =Integer.parseInt(input[i]);
				if (n%3 == 0 && n%5 == 0) {
					builder.append("FizzBuzz");
				} else if (n%5 == 0) {
					builder.append("Buzz");
				} else if (n%3 == 0) {
					builder.append("Fizz");
				} else {
					builder.append(n);
				}
			}
			System.out.println(builder.length());
		} catch (IOException e) {
			e.printStackTrace();
		}

	}

}
0