結果

問題 No.593 4進FizzBuzz
ユーザー uafr_csuafr_cs
提出日時 2017-11-10 22:33:36
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 544 bytes
コンパイル時間 1,842 ms
コンパイル使用メモリ 75,088 KB
実行使用メモリ 72,048 KB
最終ジャッジ日時 2024-11-24 12:44:48
合計ジャッジ時間 10,872 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,168 KB
testcase_01 AC 94 ms
52,596 KB
testcase_02 AC 100 ms
52,716 KB
testcase_03 AC 112 ms
54,096 KB
testcase_04 AC 113 ms
54,180 KB
testcase_05 AC 106 ms
53,860 KB
testcase_06 AC 97 ms
53,004 KB
testcase_07 AC 115 ms
53,752 KB
testcase_08 AC 114 ms
54,364 KB
testcase_09 AC 116 ms
53,592 KB
testcase_10 AC 115 ms
54,076 KB
testcase_11 AC 112 ms
53,816 KB
testcase_12 AC 97 ms
52,864 KB
testcase_13 AC 103 ms
53,148 KB
testcase_14 AC 101 ms
53,128 KB
testcase_15 AC 102 ms
53,480 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

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();
		final long N = Long.parseLong(str, 4);
		
		if(N % 15 == 0){
			System.out.println("FizzBuzz");
		}else if(N % 5 == 0){
			System.out.println("Buzz");
		}else if(N % 3 == 0){
			System.out.println("Fizz");
		}else{
			System.out.println(str);
		}
		
	}
}
0