結果

問題 No.593 4進FizzBuzz
ユーザー ManjushriMitraManjushriMitra
提出日時 2024-07-27 16:02:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 916 bytes
コンパイル時間 1,801 ms
コンパイル使用メモリ 168,912 KB
実行使用メモリ 9,096 KB
最終ジャッジ日時 2024-07-27 16:02:13
合計ジャッジ時間 5,008 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,948 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 63 ms
8,100 KB
testcase_17 AC 62 ms
7,380 KB
testcase_18 AC 64 ms
9,096 KB
testcase_19 AC 64 ms
7,448 KB
testcase_20 AC 63 ms
8,004 KB
testcase_21 AC 63 ms
8,196 KB
testcase_22 AC 63 ms
7,520 KB
testcase_23 AC 64 ms
8,956 KB
testcase_24 AC 64 ms
8,336 KB
testcase_25 AC 64 ms
7,252 KB
testcase_26 AC 66 ms
7,768 KB
testcase_27 AC 64 ms
8,204 KB
testcase_28 AC 64 ms
8,236 KB
testcase_29 AC 64 ms
7,668 KB
testcase_30 AC 65 ms
7,984 KB
testcase_31 AC 63 ms
7,984 KB
testcase_32 AC 62 ms
7,580 KB
testcase_33 AC 65 ms
7,804 KB
testcase_34 AC 63 ms
7,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,m,n) for(int i=m; i<n; ++i)
#define repl(i,m,n) for(ll i=m; i<n; ++i)

bool is_fizz(string str){
    int base = 1, res = 0;
    int n = str.size();
    for(int i = n-1; i >= 0; --i){
        res += (str[i] - '0')*base;
        res %= 3;
        base = (base * 4) % 3;
    }
    return res == 0;
}

bool is_buzz(string str){
    int base = 1, res = 0;
    int n = str.size();
    for(int i = n-1; i >= 0; --i){
        res += (str[i] - '0')*base;
        res %= 5;
        base = (base * 4) % 5;
    }
    return res == 0;
}

int main(){
    string N;
    cin >> N;

    bool fizz = is_fizz(N), buzz = is_buzz(N);

    if(fizz && buzz){
        cout << "FizzBuzz" << endl;
    }else if(fizz){
        cout << "Fizz" << endl;
    }else if(buzz){
        cout << "Buzz" << endl;
    }else{
        cout << N << endl;
    }
    return 0;
}
0