結果

問題 No.593 4進FizzBuzz
ユーザー okayunonaha
提出日時 2017-11-10 23:45:50
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 1,195 bytes
コンパイル時間 1,564 ms
コンパイル使用メモリ 167,820 KB
実行使用メモリ 8,932 KB
最終ジャッジ日時 2024-11-24 15:50:57
合計ジャッジ時間 4,306 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long;
//typedef long long ll;

#define INF (1LL << 31 - 1)
#define INFLL ((1LL << 62) - 1)
#define MOD int(1e9+7)
#define repi(i,j,n) for(int i = (j); i < (n); ++i)
#define rep(i,n) repi(i,0,n)
#define rrep(i,n) for (int i = n; i >= 0; --i)
#define fi first
#define se second
#define all(v) (v).begin(), (v).end()

int vx[8] = {0, 1, 1, 1, 0, -1, -1, -1}, vy[8] = {-1, -1, 0, 1, 1, 1, 0, -1};

inline bool check(int ux, int uy, int x, int y) {
  return (0 <= x and x < ux and 0 <= y and y < uy);
}

inline void init() {
    cin.tie(0);
    ios::sync_with_stdio(false);
}

ll three, five;
string n;

int main() {
  cin >> n;

  string s = n;
  int _size = s.size();
  reverse(s.begin(), s.end());

  rep(i,_size) {
    three += int(s[i] - '0');
    if (i == 0) {
      five += int(s[i] - '0');
    }
    else if (i % 2 == 1) {
      five += 4 * int(s[i] - '0');
    }
    else five += 6 * int(s[i] - '0');
  }

  if (three % 3 == 0 and five % 5 == 0) {
    cout << "FizzBuzz\n";
  }
  else if (three % 3 == 0) {
    cout << "Fizz\n";
  }
  else if (five % 5 == 0) {
    cout << "Buzz\n";
  }
  else cout << n << "\n";

  return 0;
}
0