結果

問題 No.593 4進FizzBuzz
ユーザー tentententen
提出日時 2020-09-07 14:26:09
言語 Java
(openjdk 23)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 2,220 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 53,664 KB
最終ジャッジ日時 2024-11-29 10:46:17
合計ジャッジ時間 14,743 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,292 KB
testcase_01 AC 131 ms
41,220 KB
testcase_02 AC 130 ms
41,276 KB
testcase_03 AC 129 ms
41,460 KB
testcase_04 AC 128 ms
41,396 KB
testcase_05 AC 131 ms
40,892 KB
testcase_06 AC 131 ms
41,304 KB
testcase_07 AC 132 ms
41,252 KB
testcase_08 AC 130 ms
41,484 KB
testcase_09 AC 133 ms
41,252 KB
testcase_10 AC 132 ms
41,452 KB
testcase_11 AC 131 ms
41,248 KB
testcase_12 AC 133 ms
41,444 KB
testcase_13 AC 134 ms
41,360 KB
testcase_14 AC 130 ms
41,392 KB
testcase_15 AC 130 ms
41,312 KB
testcase_16 AC 337 ms
53,408 KB
testcase_17 AC 344 ms
53,400 KB
testcase_18 AC 343 ms
53,284 KB
testcase_19 AC 357 ms
53,660 KB
testcase_20 AC 345 ms
53,384 KB
testcase_21 AC 340 ms
53,344 KB
testcase_22 AC 352 ms
53,260 KB
testcase_23 AC 345 ms
53,520 KB
testcase_24 AC 342 ms
53,664 KB
testcase_25 AC 341 ms
53,552 KB
testcase_26 AC 357 ms
53,648 KB
testcase_27 AC 354 ms
53,448 KB
testcase_28 AC 345 ms
53,636 KB
testcase_29 AC 358 ms
53,276 KB
testcase_30 AC 342 ms
53,624 KB
testcase_31 AC 343 ms
53,496 KB
testcase_32 AC 337 ms
53,560 KB
testcase_33 AC 360 ms
53,468 KB
testcase_34 AC 335 ms
53,456 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