結果

問題 No.593 4進FizzBuzz
ユーザー tentententen
提出日時 2020-09-07 14:26:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 2,245 ms
コンパイル使用メモリ 75,096 KB
実行使用メモリ 53,688 KB
最終ジャッジ日時 2024-05-06 23:47:19
合計ジャッジ時間 12,797 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
39,996 KB
testcase_01 AC 116 ms
41,112 KB
testcase_02 AC 120 ms
41,068 KB
testcase_03 AC 115 ms
40,736 KB
testcase_04 AC 116 ms
41,572 KB
testcase_05 AC 112 ms
41,264 KB
testcase_06 AC 117 ms
41,040 KB
testcase_07 AC 119 ms
41,364 KB
testcase_08 AC 114 ms
41,356 KB
testcase_09 AC 100 ms
41,124 KB
testcase_10 AC 118 ms
41,424 KB
testcase_11 AC 118 ms
40,220 KB
testcase_12 AC 115 ms
41,176 KB
testcase_13 AC 115 ms
41,504 KB
testcase_14 AC 112 ms
41,408 KB
testcase_15 AC 118 ms
41,368 KB
testcase_16 AC 319 ms
53,532 KB
testcase_17 AC 317 ms
53,464 KB
testcase_18 AC 314 ms
53,688 KB
testcase_19 AC 326 ms
53,560 KB
testcase_20 AC 309 ms
53,500 KB
testcase_21 AC 309 ms
53,576 KB
testcase_22 AC 334 ms
53,456 KB
testcase_23 AC 310 ms
53,244 KB
testcase_24 AC 309 ms
53,524 KB
testcase_25 AC 288 ms
53,596 KB
testcase_26 AC 325 ms
53,616 KB
testcase_27 AC 325 ms
53,376 KB
testcase_28 AC 297 ms
53,568 KB
testcase_29 AC 305 ms
53,368 KB
testcase_30 AC 313 ms
53,380 KB
testcase_31 AC 293 ms
53,540 KB
testcase_32 AC 312 ms
53,264 KB
testcase_33 AC 323 ms
53,504 KB
testcase_34 AC 307 ms
53,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	char[] arr = sc.next().toCharArray();
    	int mod3 = 0;
    	int mod5 = 0;
    	for (char c : arr) {
    	    mod3 = (mod3 * 4 + c - '0') % 3;
    	    mod5 = (mod5 * 4 + c - '0') % 5;
    	}
    	if (mod3 == 0 && mod5 == 0) {
    	    System.out.println("FizzBuzz");
    	} else if (mod5 == 0) {
    	    System.out.println("Buzz");
    	} else if (mod3 == 0) {
    	    System.out.println("Fizz");
    	} else {
    	    System.out.println(arr);
    	}
    }
}
0