結果

問題 No.593 4進FizzBuzz
ユーザー fushime2fushime2
提出日時 2017-11-21 21:09:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 1,179 ms
コンパイル使用メモリ 158,448 KB
実行使用メモリ 7,312 KB
最終ジャッジ日時 2024-05-04 18:41:50
合計ジャッジ時間 5,491 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 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 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 79 ms
7,188 KB
testcase_17 AC 100 ms
7,188 KB
testcase_18 AC 80 ms
7,184 KB
testcase_19 AC 105 ms
7,184 KB
testcase_20 AC 59 ms
7,312 KB
testcase_21 AC 83 ms
7,184 KB
testcase_22 AC 115 ms
7,184 KB
testcase_23 AC 57 ms
7,184 KB
testcase_24 AC 99 ms
7,184 KB
testcase_25 AC 100 ms
7,184 KB
testcase_26 AC 99 ms
7,056 KB
testcase_27 AC 102 ms
7,180 KB
testcase_28 AC 56 ms
7,056 KB
testcase_29 AC 104 ms
7,188 KB
testcase_30 AC 60 ms
7,312 KB
testcase_31 AC 90 ms
7,184 KB
testcase_32 AC 114 ms
7,052 KB
testcase_33 AC 115 ms
7,184 KB
testcase_34 AC 89 ms
7,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long ll;
#define FOR(i,a,b) for(int (i)=(a);i<(int)(b);i++)
#define rep(i,n) FOR(i,0,n)

bool f(string& s, int mod) {
    int x = 1, t = 0;
    int n = s.size();
    rep(i, n) {
        int b = s[n - 1 - i] - '0';
        t = (t + b * x) % mod;
        x = (x * 4) % mod;
    }
    return t == 0;
}


int main() {
    string s;
    cin >> s;
    
    if (f(s, 15)) {
        cout << "FizzBuzz" << endl;
    }
    else if (f(s, 3)) {
        cout << "Fizz" << endl;
    }
    else if (f(s, 5)) {
        cout << "Buzz" << endl;
    }
    else {
        cout << s << endl;
    }

    return 0;
}
0