結果

問題 No.593 4進FizzBuzz
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-28 18:46:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 437 ms / 2,000 ms
コード長 554 bytes
コンパイル時間 2,448 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 50,304 KB
最終ジャッジ日時 2024-12-21 14:00:14
合計ジャッジ時間 13,590 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,312 KB
testcase_01 AC 119 ms
40,340 KB
testcase_02 AC 129 ms
41,212 KB
testcase_03 AC 128 ms
41,168 KB
testcase_04 AC 122 ms
40,440 KB
testcase_05 AC 127 ms
41,080 KB
testcase_06 AC 129 ms
41,024 KB
testcase_07 AC 130 ms
40,980 KB
testcase_08 AC 133 ms
41,012 KB
testcase_09 AC 130 ms
41,200 KB
testcase_10 AC 129 ms
41,212 KB
testcase_11 AC 128 ms
41,220 KB
testcase_12 AC 119 ms
40,096 KB
testcase_13 AC 131 ms
40,884 KB
testcase_14 AC 137 ms
41,128 KB
testcase_15 AC 138 ms
40,908 KB
testcase_16 AC 415 ms
49,988 KB
testcase_17 AC 389 ms
50,012 KB
testcase_18 AC 390 ms
49,908 KB
testcase_19 AC 434 ms
49,904 KB
testcase_20 AC 351 ms
50,072 KB
testcase_21 AC 412 ms
50,176 KB
testcase_22 AC 437 ms
50,140 KB
testcase_23 AC 352 ms
50,072 KB
testcase_24 AC 380 ms
50,092 KB
testcase_25 AC 384 ms
49,968 KB
testcase_26 AC 430 ms
50,304 KB
testcase_27 AC 421 ms
49,808 KB
testcase_28 AC 349 ms
49,888 KB
testcase_29 AC 431 ms
50,044 KB
testcase_30 AC 347 ms
50,116 KB
testcase_31 AC 407 ms
49,868 KB
testcase_32 AC 376 ms
50,044 KB
testcase_33 AC 424 ms
49,892 KB
testcase_34 AC 405 ms
50,136 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