結果

問題 No.593 4進FizzBuzz
ユーザー jimmyo0705jimmyo0705
提出日時 2017-11-10 23:13:56
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 2,264 bytes
コンパイル時間 865 ms
コンパイル使用メモリ 87,360 KB
実行使用メモリ 11,188 KB
最終ジャッジ日時 2024-05-03 14:27:43
合計ジャッジ時間 6,034 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 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 #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <cmath>
#include <cstdio>
#include <functional>
#include <numeric>
#include <stack>
#include <queue>
#include <map>
#include <set>
#include <utility>
#include <sstream>
#include <complex>
#include <fstream>
#include <bitset>
#include <time.h>
#include <tuple>

using namespace std;

typedef long long ll;
typedef pair<ll, ll> P;
typedef vector<ll> V;
typedef complex<double> Point;

#define PI acos(-1.0)
#define EPS 1e-10
const ll INF = 1e12;
const ll MOD = 1e9 + 7;

#define FOR(i,a,b) for(int i=(a);i<(b);i++)
#define rep(i,N) for(int i=0;i<(N);i++)
#define ALL(s) (s).begin(),(s).end()
#define EQ(a,b) (abs((a)-(b))<EPS)
#define EQV(a,b) ( EQ((a).real(), (b).real()) && EQ((a).imag(), (b).imag()) )
#define fi first
#define se second
#define N_SIZE (1LL << 20)
#define NIL -1
#define MAX_N 100100

//int ask(int x, int y, int z) {
//	int d;
//	cout << "?" << " " << x << " " << y << " " << z << endl;
//	cin >> d;
//	cin.ignore();
//	return d;
//}
//
//void answer(int x, int y, int z) {
//	cout << "!" << " " << x << " " << y << " " << z << endl;
//}
//
//int main(void) {
//	ll lx = -150, ux = 150;
//	ll ly = -150, uy = 150;
//	ll lz = -150, uz = 150;
//	ll ansx, ansy, ansz;
//	rep(i, 30) {
//		ll ld = ask(lx, 0, 0), ud = ask(ux, 0, 0);
//		if (ld < ud)ux = (lx + ux) / 2;
//		else lx= (lx + ux) / 2;
//	}
//	ansx = lx;
//	rep(i, 30) {
//		ll ld = ask(ansx, ly, 0), ud = ask(ansx, uy, 0);
//		if (ld < ud)uy = (ly + uy) / 2;
//		else ly = (ly + uy) / 2;
//	}
//	ansy = ly;
//	rep(i, 30) {
//		ll ld = ask(ansx, ansy, lz), ud = ask(ansx, ansy, uz);
//		if (ld < ud)uz = (lz + uz) / 2;
//		else lz = (lz + uz) / 2;
//	}
//	ansz = lz;
//	answer(ansx, ansy, ansz);
//	return 0;
//}

string s;
int ans[1001000];

bool isf() {
	if (s.size() == 1)return false;
	rep(i, s.size() - 1) {
		ans[i + 1] -= ans[i];
	}
	return ans[s.size() - 1] == 0;
}

bool ist(string s) {
	ll res = 0;
	rep(i, s.size()) {
		res += s[i] - '0';
	}
	return res % 3 == 0;
}

int main() {
	cin >> s;
	rep(i, s.size()) {
		ans[i] = s[i] - '0';
	}
	if (ist(s)) {
		if (isf())cout << "FizzBuzz" << endl;
		else cout << "Fizz" << endl;
	}
	else if (isf()) cout << "Buzz" << endl;
	else cout << s << endl;
}
0