結果

問題 No.593 4進FizzBuzz
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2017-11-10 22:30:47
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 594 bytes
コンパイル時間 1,974 ms
コンパイル使用メモリ 74,556 KB
実行使用メモリ 68,672 KB
最終ジャッジ日時 2024-05-03 12:40:07
合計ジャッジ時間 8,005 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
46,312 KB
testcase_01 AC 108 ms
40,064 KB
testcase_02 AC 119 ms
41,164 KB
testcase_03 AC 108 ms
40,948 KB
testcase_04 AC 106 ms
40,084 KB
testcase_05 AC 115 ms
40,828 KB
testcase_06 AC 114 ms
41,400 KB
testcase_07 AC 104 ms
40,132 KB
testcase_08 AC 115 ms
40,812 KB
testcase_09 AC 117 ms
41,100 KB
testcase_10 AC 116 ms
41,512 KB
testcase_11 AC 115 ms
41,084 KB
testcase_12 AC 112 ms
41,260 KB
testcase_13 AC 113 ms
41,028 KB
testcase_14 AC 123 ms
41,272 KB
testcase_15 AC 120 ms
41,312 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
    static boolean divide(BigInteger b,int v){
        return b.remainder(BigInteger.valueOf(v))==BigInteger.ZERO;
    }
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        BigInteger b=new BigInteger(scan.next(),4);
        if(divide(b,15))
            System.out.println("FizzBuzz");
        else if(divide(b,3))
            System.out.println("Fizz");
        else if(divide(b,5))
            System.out.println("Buzz");
        else
            System.out.println(b.toString(4));
    }
}
0