結果
問題 | No.593 4進FizzBuzz |
ユーザー | tenten |
提出日時 | 2023-07-27 17:41:11 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,888 bytes |
コンパイル時間 | 2,563 ms |
コンパイル使用メモリ | 91,016 KB |
実行使用メモリ | 50,672 KB |
最終ジャッジ日時 | 2024-10-04 16:26:18 |
合計ジャッジ時間 | 10,034 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
36,952 KB |
testcase_01 | AC | 51 ms
37,032 KB |
testcase_02 | AC | 53 ms
37,168 KB |
testcase_03 | AC | 52 ms
37,156 KB |
testcase_04 | AC | 52 ms
36,820 KB |
testcase_05 | AC | 50 ms
37,016 KB |
testcase_06 | AC | 52 ms
37,004 KB |
testcase_07 | AC | 52 ms
36,824 KB |
testcase_08 | AC | 52 ms
36,944 KB |
testcase_09 | AC | 52 ms
37,208 KB |
testcase_10 | AC | 52 ms
37,172 KB |
testcase_11 | AC | 51 ms
37,152 KB |
testcase_12 | AC | 52 ms
37,168 KB |
testcase_13 | AC | 52 ms
36,968 KB |
testcase_14 | AC | 52 ms
37,012 KB |
testcase_15 | AC | 53 ms
37,156 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 198 ms
50,548 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 195 ms
50,164 KB |
testcase_22 | AC | 232 ms
50,604 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 198 ms
50,112 KB |
testcase_26 | AC | 233 ms
50,276 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 230 ms
50,640 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 199 ms
49,416 KB |
testcase_33 | AC | 236 ms
50,636 KB |
testcase_34 | WA | - |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); char[] inputs = sc.next().toCharArray(); int value = 0; for (char c : inputs) { value *= 4; value += c - '0'; } String ans; if (value % 15 == 0) { ans = "FizzBuzz"; } else if (value % 3 == 0) { ans = "Fizz"; } else if (value % 5 == 0) { ans = "Buzz"; } else { ans = new String(inputs); } System.out.println(ans); } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }