結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー jimanojimano
提出日時 2018-01-26 23:52:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 47 ms / 1,000 ms
コード長 801 bytes
コンパイル時間 2,898 ms
コンパイル使用メモリ 73,908 KB
実行使用メモリ 37,168 KB
最終ジャッジ日時 2024-06-28 18:49:46
合計ジャッジ時間 4,994 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
37,032 KB
testcase_01 AC 47 ms
36,936 KB
testcase_02 AC 47 ms
37,044 KB
testcase_03 AC 46 ms
36,976 KB
testcase_04 AC 47 ms
36,964 KB
testcase_05 AC 46 ms
36,844 KB
testcase_06 AC 46 ms
36,976 KB
testcase_07 AC 47 ms
36,988 KB
testcase_08 AC 46 ms
36,640 KB
testcase_09 AC 46 ms
36,976 KB
testcase_10 AC 45 ms
36,996 KB
testcase_11 AC 45 ms
36,888 KB
testcase_12 AC 46 ms
36,900 KB
testcase_13 AC 45 ms
36,984 KB
testcase_14 AC 46 ms
37,032 KB
testcase_15 AC 45 ms
37,040 KB
testcase_16 AC 46 ms
36,892 KB
testcase_17 AC 46 ms
37,064 KB
testcase_18 AC 46 ms
36,960 KB
testcase_19 AC 46 ms
37,104 KB
testcase_20 AC 46 ms
37,104 KB
testcase_21 AC 46 ms
37,152 KB
testcase_22 AC 46 ms
37,068 KB
testcase_23 AC 46 ms
37,024 KB
testcase_24 AC 46 ms
37,108 KB
testcase_25 AC 47 ms
37,112 KB
testcase_26 AC 47 ms
37,096 KB
testcase_27 AC 45 ms
37,168 KB
testcase_28 AC 47 ms
36,904 KB
testcase_29 AC 47 ms
36,896 KB
testcase_30 AC 46 ms
37,032 KB
testcase_31 AC 45 ms
36,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder;

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

public class No0637 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			final String f = "Fizz";
			final String b = "Buzz";
			final String fb = f + b;
			int sum = 0;
			String[] input = br.readLine().split(" ");

			for (int i = 0; i < input.length; i++) {
				int num = Integer.parseInt(input[i]);
				if (num % 15 == 0) {
					sum += fb.length();
				} else if (num % 3 == 0) {
					sum += f.length();
				} else if (num % 5 == 0) {
					sum += b.length();
				} else {
					sum += input[i].length();
				}
			}
			System.out.println(sum);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0