結果

問題 No.593 4進FizzBuzz
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-28 18:46:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 424 ms / 2,000 ms
コード長 554 bytes
コンパイル時間 2,538 ms
コンパイル使用メモリ 75,008 KB
実行使用メモリ 50,224 KB
最終ジャッジ日時 2024-06-01 09:05:10
合計ジャッジ時間 13,069 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
39,856 KB
testcase_01 AC 107 ms
40,008 KB
testcase_02 AC 121 ms
41,240 KB
testcase_03 AC 122 ms
41,272 KB
testcase_04 AC 121 ms
41,016 KB
testcase_05 AC 122 ms
41,244 KB
testcase_06 AC 122 ms
41,656 KB
testcase_07 AC 123 ms
41,424 KB
testcase_08 AC 108 ms
40,144 KB
testcase_09 AC 109 ms
40,288 KB
testcase_10 AC 120 ms
41,372 KB
testcase_11 AC 123 ms
41,220 KB
testcase_12 AC 127 ms
41,072 KB
testcase_13 AC 132 ms
41,148 KB
testcase_14 AC 122 ms
41,136 KB
testcase_15 AC 123 ms
41,112 KB
testcase_16 AC 390 ms
50,224 KB
testcase_17 AC 373 ms
50,040 KB
testcase_18 AC 401 ms
50,188 KB
testcase_19 AC 421 ms
49,960 KB
testcase_20 AC 335 ms
49,976 KB
testcase_21 AC 354 ms
49,972 KB
testcase_22 AC 411 ms
50,128 KB
testcase_23 AC 344 ms
49,924 KB
testcase_24 AC 367 ms
50,024 KB
testcase_25 AC 346 ms
49,740 KB
testcase_26 AC 424 ms
50,076 KB
testcase_27 AC 422 ms
50,176 KB
testcase_28 AC 336 ms
50,124 KB
testcase_29 AC 414 ms
49,976 KB
testcase_30 AC 340 ms
50,160 KB
testcase_31 AC 384 ms
49,912 KB
testcase_32 AC 364 ms
50,132 KB
testcase_33 AC 421 ms
50,100 KB
testcase_34 AC 393 ms
50,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.System.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String s = sc.next();
		if (div(s,15)) {out.println("FizzBuzz");}
		else if (div(s,5)) {out.println("Buzz");}
		else if (div(s,3)) {out.println("Fizz");}
		else {out.println(s);}
	}
	static boolean div (String s, int n) {
		int temp = 0;
		for (int i=0; i<s.length(); i++) {
			temp = (temp*4+Character.getNumericValue(s.charAt(i)))%n;
		}
		if (temp==0) {return true;}
		return false;
	}
}
0