結果
問題 | No.593 4進FizzBuzz |
ユーザー | mai |
提出日時 | 2017-08-03 07:31:24 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 791 bytes |
コンパイル時間 | 3,039 ms |
コンパイル使用メモリ | 74,972 KB |
実行使用メモリ | 61,060 KB |
最終ジャッジ日時 | 2024-10-14 13:45:32 |
合計ジャッジ時間 | 9,419 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 122 ms
46,504 KB |
testcase_01 | AC | 112 ms
41,188 KB |
testcase_02 | AC | 112 ms
41,256 KB |
testcase_03 | AC | 115 ms
41,144 KB |
testcase_04 | AC | 117 ms
41,304 KB |
testcase_05 | AC | 117 ms
41,548 KB |
testcase_06 | AC | 118 ms
40,972 KB |
testcase_07 | AC | 105 ms
40,048 KB |
testcase_08 | AC | 117 ms
41,288 KB |
testcase_09 | AC | 119 ms
41,380 KB |
testcase_10 | AC | 123 ms
41,412 KB |
testcase_11 | AC | 119 ms
41,076 KB |
testcase_12 | AC | 116 ms
41,476 KB |
testcase_13 | AC | 119 ms
41,072 KB |
testcase_14 | AC | 117 ms
41,056 KB |
testcase_15 | AC | 126 ms
41,396 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 | -- | - |
ソースコード
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(); BigInteger num = new BigInteger(line,4); BigInteger rem5 = num.remainder(new BigInteger("5")); BigInteger rem3 = num.remainder(new BigInteger("3")); boolean div5 = BigInteger.ZERO.equals(rem5); boolean div3 = BigInteger.ZERO.equals(rem3); 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); } } }