結果

問題 No.593 4進FizzBuzz
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2017-11-10 22:30:47
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 594 bytes
コンパイル時間 2,394 ms
コンパイル使用メモリ 74,904 KB
実行使用メモリ 92,772 KB
最終ジャッジ日時 2024-11-24 12:36:39
合計ジャッジ時間 62,663 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
46,752 KB
testcase_01 AC 113 ms
91,148 KB
testcase_02 AC 111 ms
46,892 KB
testcase_03 AC 112 ms
91,952 KB
testcase_04 AC 111 ms
46,588 KB
testcase_05 AC 117 ms
92,772 KB
testcase_06 AC 107 ms
46,556 KB
testcase_07 AC 115 ms
91,272 KB
testcase_08 AC 102 ms
46,504 KB
testcase_09 AC 115 ms
90,932 KB
testcase_10 AC 111 ms
46,428 KB
testcase_11 AC 112 ms
92,016 KB
testcase_12 AC 98 ms
46,408 KB
testcase_13 AC 110 ms
90,760 KB
testcase_14 AC 115 ms
45,160 KB
testcase_15 AC 120 ms
92,456 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

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