結果

問題 No.593 4進FizzBuzz
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-28 18:43:23
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 527 bytes
コンパイル時間 2,440 ms
コンパイル使用メモリ 74,372 KB
実行使用メモリ 50,364 KB
最終ジャッジ日時 2024-12-21 13:59:38
合計ジャッジ時間 13,489 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,252 KB
testcase_01 AC 127 ms
41,228 KB
testcase_02 AC 128 ms
41,072 KB
testcase_03 AC 121 ms
40,124 KB
testcase_04 AC 120 ms
40,048 KB
testcase_05 WA -
testcase_06 AC 128 ms
41,144 KB
testcase_07 AC 124 ms
40,108 KB
testcase_08 AC 114 ms
41,340 KB
testcase_09 AC 129 ms
41,412 KB
testcase_10 AC 133 ms
41,340 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 128 ms
41,000 KB
testcase_15 AC 126 ms
40,088 KB
testcase_16 AC 396 ms
50,004 KB
testcase_17 AC 340 ms
49,968 KB
testcase_18 AC 363 ms
50,096 KB
testcase_19 AC 413 ms
49,848 KB
testcase_20 AC 338 ms
49,976 KB
testcase_21 AC 391 ms
50,108 KB
testcase_22 AC 416 ms
49,836 KB
testcase_23 AC 342 ms
50,080 KB
testcase_24 AC 368 ms
49,972 KB
testcase_25 AC 373 ms
49,932 KB
testcase_26 AC 413 ms
50,208 KB
testcase_27 AC 412 ms
50,364 KB
testcase_28 AC 341 ms
49,704 KB
testcase_29 AC 418 ms
49,848 KB
testcase_30 AC 340 ms
49,940 KB
testcase_31 AC 394 ms
49,964 KB
testcase_32 AC 367 ms
50,104 KB
testcase_33 AC 451 ms
49,972 KB
testcase_34 AC 393 ms
50,084 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+s.charAt(i))%n;
		}
		if (temp==0) {return true;}
		return false;
	}
}
0