結果

問題 No.593 4進FizzBuzz
ユーザー tetsutetsu
提出日時 2017-11-11 22:10:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 356 ms / 2,000 ms
コード長 3,093 bytes
コンパイル時間 4,654 ms
コンパイル使用メモリ 75,596 KB
実行使用メモリ 63,872 KB
最終ジャッジ日時 2023-08-16 07:50:34
合計ジャッジ時間 15,740 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
55,988 KB
testcase_01 AC 116 ms
55,960 KB
testcase_02 AC 115 ms
55,552 KB
testcase_03 AC 116 ms
55,936 KB
testcase_04 AC 115 ms
55,988 KB
testcase_05 AC 114 ms
56,080 KB
testcase_06 AC 116 ms
56,272 KB
testcase_07 AC 114 ms
56,164 KB
testcase_08 AC 117 ms
56,060 KB
testcase_09 AC 116 ms
55,604 KB
testcase_10 AC 115 ms
55,744 KB
testcase_11 AC 116 ms
55,876 KB
testcase_12 AC 118 ms
55,928 KB
testcase_13 AC 117 ms
55,548 KB
testcase_14 AC 118 ms
55,796 KB
testcase_15 AC 119 ms
56,064 KB
testcase_16 AC 332 ms
63,452 KB
testcase_17 AC 329 ms
63,316 KB
testcase_18 AC 333 ms
63,168 KB
testcase_19 AC 355 ms
63,612 KB
testcase_20 AC 330 ms
63,084 KB
testcase_21 AC 332 ms
63,744 KB
testcase_22 AC 356 ms
63,544 KB
testcase_23 AC 331 ms
63,484 KB
testcase_24 AC 333 ms
63,456 KB
testcase_25 AC 326 ms
63,160 KB
testcase_26 AC 351 ms
63,872 KB
testcase_27 AC 349 ms
63,492 KB
testcase_28 AC 329 ms
63,628 KB
testcase_29 AC 349 ms
63,788 KB
testcase_30 AC 329 ms
63,300 KB
testcase_31 AC 326 ms
63,388 KB
testcase_32 AC 330 ms
63,608 KB
testcase_33 AC 354 ms
63,376 KB
testcase_34 AC 331 ms
63,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

public class P593 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner sc = new Scanner(System.in);
		String n4 = sc.next();

		boolean p3 = false;
		boolean p5 = false;
		long tmp = 0;
		for(int i=0; i<n4.length(); i++) {
			tmp = (tmp*4+Character.getNumericValue(n4.charAt(i))) % 3;
		}
		if(tmp==0) p3 = true;
		tmp = 0;
		for(int i=0; i<n4.length(); i++) {
			tmp = (tmp*4+Character.getNumericValue(n4.charAt(i))) % 5;
		}		
		if(tmp == 0) p5 = true;
		if(p3&&p5) {
			System.out.println("FizzBuzz");
		} else if(p3) {
			System.out.println("Fizz");
		} else if(p5) {
			System.out.println("Buzz");
		} else {
			System.out.println(n4);
		}
	}
	
	static int binarySearch(int[] A, int x) {
		int l = 0;
		int r = A.length;
		while(l<r) {
			int mid = (l+r)/2;
			if(A[mid] == x) return mid;
			else if(x<A[mid]) r = mid;
			else l = mid+1;
		}
		return -1;
	}
	
	static long upper_bound(int[] A, int b) {
		// bよりおおきい値がはじめて出てくるindexを返す
		return lower_bound(A, b+1);
	}

	static long lower_bound(int[] A, int b) {
		// b以上の値がはじめて出てくるindexを返す
		int lb=0;
		int ub=A.length;
		while(ub>lb) {
			int mid = (lb+ub)/2;
			if(A[mid]>=b) ub = mid;
			else lb = mid+1;
		}
		return lb;
	}
	
	// union find lib
	// usage:
	// 最初にinitを呼ぶ
	// root: 直接は呼ばないで
	// unite: まとめる
	// same: グループ判定
	static void init(int par[], int N) {
		for(int i=0; i<N; i++) {
			par[i] = i;
		}
	}
	
	static int root(int x, int [] par) {
		if(par[x] == x) {
			return x;
		} else {
			return (par[x] = root(par[x], par));
		}
	}
	
	static boolean same(int x, int y, int[] par) {
		return root(x, par) == root(y, par);
	}
	
	static void unite(int x, int y, int[] par) {
		x = root(x, par);
		y = root(y, par);
		if(x == y) return;
		par[x] = y;
	}
	
	// end union find lib
	
	// number lib
	
	static int max(int...ls) {
		int ans = Integer.MIN_VALUE;
		for(int i=0; i<ls.length; i++) {
			ans = Math.max(ans, ls[i]);
		}
		return ans;
	}
	
	static int min(int...ls) {
		int ans = Integer.MAX_VALUE;
		for(int i=0; i<ls.length; i++) {
			ans = Math.min(ans, ls[i]);
		}
		return ans;
	}
	
	static long lcm(long a, long b) {
		return a*(b/gcd(a, b));
	}
	
	static long gcd(long a, long b) {
		long ta = Math.max(a, b);
		long tb = Math.min(a, b);
		long tmp;
		while((tmp = ta%tb) != 0) {
			ta = tb;
			tb = tmp;
		}
		return tb;
	}
	
	static long modcomb(long n, long k, long mod) {
		if(k==1) {
			return n;
		}
		
		long ans = 1;
		for(long i=n; i>=n-k+1; i--) {
			ans = (ans * i)%mod;
		}
		for(long i=k; 0<i; i--) {
			ans = (ans * modpow(i, mod-2, mod)) % mod;
		}
		return ans;
	}
	
	static long modpow(long a, long b, long mod) {
		if(b==0) return 1;
		if(b%2==0) {
			long d = modpow(a, b/2, mod);
			return (d*d)%mod;
		} else {
			return (a*modpow(a, b-1, mod))%mod;
		}
	}
	
	static int disit(long a, long d) {
		int count = 0;
		while(a!=0) {
			a = a/d;
			count++;
		}
		return count;
	}
	
	// end number lib
}
0