結果

問題 No.593 4進FizzBuzz
ユーザー uafr_csuafr_cs
提出日時 2017-11-10 22:43:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 375 ms / 2,000 ms
コード長 670 bytes
コンパイル時間 2,406 ms
コンパイル使用メモリ 75,400 KB
実行使用メモリ 50,224 KB
最終ジャッジ日時 2024-11-24 12:58:05
合計ジャッジ時間 13,169 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,188 KB
testcase_01 AC 126 ms
41,148 KB
testcase_02 AC 130 ms
41,080 KB
testcase_03 AC 117 ms
40,252 KB
testcase_04 AC 132 ms
41,344 KB
testcase_05 AC 127 ms
41,028 KB
testcase_06 AC 126 ms
41,396 KB
testcase_07 AC 127 ms
40,988 KB
testcase_08 AC 116 ms
39,936 KB
testcase_09 AC 132 ms
41,476 KB
testcase_10 AC 132 ms
41,200 KB
testcase_11 AC 131 ms
40,960 KB
testcase_12 AC 113 ms
40,020 KB
testcase_13 AC 112 ms
39,864 KB
testcase_14 AC 115 ms
39,992 KB
testcase_15 AC 127 ms
41,264 KB
testcase_16 AC 349 ms
49,692 KB
testcase_17 AC 350 ms
49,804 KB
testcase_18 AC 323 ms
50,004 KB
testcase_19 AC 374 ms
49,992 KB
testcase_20 AC 342 ms
49,956 KB
testcase_21 AC 351 ms
49,988 KB
testcase_22 AC 369 ms
50,208 KB
testcase_23 AC 352 ms
49,900 KB
testcase_24 AC 347 ms
50,224 KB
testcase_25 AC 325 ms
50,024 KB
testcase_26 AC 369 ms
50,028 KB
testcase_27 AC 375 ms
49,940 KB
testcase_28 AC 346 ms
49,756 KB
testcase_29 AC 375 ms
49,968 KB
testcase_30 AC 346 ms
50,004 KB
testcase_31 AC 351 ms
49,820 KB
testcase_32 AC 351 ms
50,224 KB
testcase_33 AC 370 ms
49,960 KB
testcase_34 AC 344 ms
49,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final String str = sc.next();
		
		long mod = 0;
		for(int i = 0; i < str.length(); i++){
			mod *= 4;
			mod %= 15;
			
			mod += Character.getNumericValue(str.charAt(i));
			mod %= 15;
		}
		
		if(mod % 15 == 0){
			System.out.println("FizzBuzz");
		}else if(mod % 5 == 0){
			System.out.println("Buzz");
		}else if(mod % 3 == 0){
			System.out.println("Fizz");
		}else{
			System.out.println(str);
		}
		
	}
}
0