結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2018-04-14 15:20:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 625 bytes
コンパイル時間 1,942 ms
コンパイル使用メモリ 74,956 KB
実行使用メモリ 41,716 KB
最終ジャッジ日時 2024-06-28 19:03:37
合計ジャッジ時間 7,148 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,156 KB
testcase_01 AC 128 ms
41,388 KB
testcase_02 AC 127 ms
41,304 KB
testcase_03 AC 126 ms
41,172 KB
testcase_04 AC 112 ms
40,016 KB
testcase_05 AC 128 ms
41,664 KB
testcase_06 AC 132 ms
41,260 KB
testcase_07 AC 127 ms
41,412 KB
testcase_08 AC 127 ms
41,372 KB
testcase_09 AC 127 ms
41,508 KB
testcase_10 AC 118 ms
40,692 KB
testcase_11 AC 125 ms
41,364 KB
testcase_12 AC 128 ms
41,312 KB
testcase_13 AC 125 ms
41,496 KB
testcase_14 AC 126 ms
41,532 KB
testcase_15 AC 127 ms
41,308 KB
testcase_16 AC 120 ms
41,224 KB
testcase_17 AC 123 ms
41,304 KB
testcase_18 AC 130 ms
41,528 KB
testcase_19 AC 125 ms
41,344 KB
testcase_20 AC 124 ms
41,040 KB
testcase_21 AC 127 ms
41,468 KB
testcase_22 AC 126 ms
41,240 KB
testcase_23 AC 126 ms
41,568 KB
testcase_24 AC 123 ms
41,360 KB
testcase_25 AC 122 ms
41,276 KB
testcase_26 AC 117 ms
41,716 KB
testcase_27 AC 125 ms
41,324 KB
testcase_28 AC 125 ms
41,624 KB
testcase_29 AC 126 ms
41,716 KB
testcase_30 AC 113 ms
39,900 KB
testcase_31 AC 116 ms
41,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static StringBuilder sb = new StringBuilder("");
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        for(int i = 0; i < 5; i++) {
            int n = sc.nextInt();
            solve(n);
        }
        System.out.println(sb.toString().length());
    }
    
    static void solve(int n) {
        if(n%15 == 0) {
            sb.append("FizzBuzz");
        } else if(n%3 ==0) {
            sb.append("Fizz");
        } else if(n%5 ==0) {
            sb.append("Buzz");
        } else {
            sb.append(n);
        }
    }
}
0