結果

問題 No.593 4進FizzBuzz
ユーザー creep04creep04
提出日時 2018-01-04 17:09:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 1,979 bytes
コンパイル時間 1,834 ms
コンパイル使用メモリ 144,108 KB
実行使用メモリ 5,192 KB
最終ジャッジ日時 2023-08-24 18:57:17
合計ジャッジ時間 4,157 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 22 ms
5,172 KB
testcase_17 AC 22 ms
5,160 KB
testcase_18 AC 22 ms
5,192 KB
testcase_19 AC 22 ms
5,184 KB
testcase_20 AC 22 ms
5,076 KB
testcase_21 AC 22 ms
5,164 KB
testcase_22 AC 23 ms
5,100 KB
testcase_23 AC 22 ms
5,140 KB
testcase_24 AC 22 ms
5,172 KB
testcase_25 AC 22 ms
5,148 KB
testcase_26 AC 22 ms
5,040 KB
testcase_27 AC 23 ms
5,044 KB
testcase_28 AC 22 ms
5,164 KB
testcase_29 AC 23 ms
5,172 KB
testcase_30 AC 22 ms
5,184 KB
testcase_31 AC 22 ms
5,044 KB
testcase_32 AC 22 ms
5,176 KB
testcase_33 AC 23 ms
5,080 KB
testcase_34 AC 22 ms
5,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

//#define int long long
#define rep(i,n) for(int (i)=0;(i)<(int)(n);(i)++)
#define rept(i,n) for(int (i)=0;(i)<=(int)(n);(i)++)
#define reps(i,s,n) for(int (i)=(s);(i)<(int)(n);(i)++)
#define repst(i,s,n) for(int (i)=(s);(i)<=(int)(n);(i)++)
#define repr(i,n) for(int (i)=(n);(i)>=0;(i)--)
#define each(itr,v) for(auto (itr):(v))
#define all(c) (c).begin(),(c).end()
#define pb push_back
#define mp(x,y) make_pair((x),(y))
#define fi first
#define se second
#define chmin(x,y) x=min(x,y)
#define chmax(x,y) x=max(x,y)
#define ln '\n'
#define dbg(x) cout<<#x" = "<<(x)<<ln

typedef long long ll;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef vector<vector<int> > mat;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;

const int inf = (int)1e9;
const ll linf = (ll)1e18;
const int mod = (int)(1e9+7);
const int dx[] = {0, 1, 0, -1};
const int dy[] = {1, 0, -1, 0};
const int ddx[] = {0, 1, 1, 1, 0, -1, -1, -1};
const int ddy[] = {1, 1, 0, -1, -1, -1, 0, 1};
const double eps = 1e-10;

struct oreno_initializer {
	oreno_initializer() {
		cin.tie(0);
		ios::sync_with_stdio(0);
	}
} oreno_initializer;

// ━━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…
// .。.:( ^ω^)・゚+.。.:( ^ω^)・゚+.。.:( ^ω^)・゚+.。.:( ^ω^)・゚+.。.:( ^ω^)・゚+
// ・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・‥…━━━☆・

string f;
int n, t, s;
bool Fizz, Buzz;

signed main() {
	cin >> f;
	n = f.length();
	rep(i,n) t = (t*4 + (f[i]-'0'))%3;
	if (t==0) Fizz = true;
	t = 0;
	rep(i,n) t = (t*4 + (f[i]-'0'))%5;
	if (t==0) Buzz = true;
	if (Fizz) cout << "Fizz";
	if (Buzz) cout << "Buzz";
	if (!Fizz && !Buzz) cout << f;
	cout << ln;
}
0