結果

問題 No.593 4進FizzBuzz
ユーザー maimai
提出日時 2017-08-03 07:37:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 398 ms / 2,000 ms
コード長 822 bytes
コンパイル時間 3,903 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 55,028 KB
最終ジャッジ日時 2024-10-14 13:46:03
合計ジャッジ時間 13,550 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,208 KB
testcase_01 AC 111 ms
41,116 KB
testcase_02 AC 113 ms
41,228 KB
testcase_03 AC 107 ms
40,084 KB
testcase_04 AC 119 ms
41,056 KB
testcase_05 AC 98 ms
40,024 KB
testcase_06 AC 107 ms
41,024 KB
testcase_07 AC 102 ms
40,232 KB
testcase_08 AC 102 ms
40,260 KB
testcase_09 AC 112 ms
41,172 KB
testcase_10 AC 102 ms
40,280 KB
testcase_11 AC 112 ms
41,048 KB
testcase_12 AC 100 ms
40,184 KB
testcase_13 AC 104 ms
40,948 KB
testcase_14 AC 113 ms
40,960 KB
testcase_15 AC 112 ms
41,064 KB
testcase_16 AC 350 ms
54,628 KB
testcase_17 AC 376 ms
54,760 KB
testcase_18 AC 377 ms
54,820 KB
testcase_19 AC 367 ms
54,980 KB
testcase_20 AC 373 ms
54,808 KB
testcase_21 AC 371 ms
54,824 KB
testcase_22 AC 356 ms
54,872 KB
testcase_23 AC 367 ms
54,848 KB
testcase_24 AC 332 ms
54,692 KB
testcase_25 AC 331 ms
54,820 KB
testcase_26 AC 358 ms
55,028 KB
testcase_27 AC 398 ms
54,904 KB
testcase_28 AC 373 ms
54,780 KB
testcase_29 AC 394 ms
54,928 KB
testcase_30 AC 381 ms
54,936 KB
testcase_31 AC 371 ms
54,860 KB
testcase_32 AC 374 ms
54,560 KB
testcase_33 AC 392 ms
54,888 KB
testcase_34 AC 367 ms
54,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.math.*;

public class prog {

    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        String line = sc.nextLine();
        
        int odd = 0;
        int even = 0;
        
        for (int i = 0; i < line.length(); ++i){
            int c = line.charAt(i) - '0';
            if (i%2 == 1) odd  += c;
            else          even += c;
        }
        
        boolean div5 = (odd - even) % 5 == 0;
        boolean div3 = (odd + even) % 3 == 0;
        
        if (div5 && div3){
            System.out.println("FizzBuzz");
        }else if (div5){
            System.out.println("Buzz");
        }else if (div3){
            System.out.println("Fizz");
        }else{
            System.out.println(line);
        }
	}
}
0