結果

問題 No.593 4進FizzBuzz
ユーザー ManjushriMitraManjushriMitra
提出日時 2024-07-27 15:52:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 882 bytes
コンパイル時間 1,817 ms
コンパイル使用メモリ 168,316 KB
実行使用メモリ 9,044 KB
最終ジャッジ日時 2024-07-27 15:52:58
合計ジャッジ時間 4,967 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 WA -
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1 ms
6,948 KB
testcase_15 WA -
testcase_16 AC 54 ms
7,376 KB
testcase_17 WA -
testcase_18 AC 56 ms
7,480 KB
testcase_19 AC 65 ms
7,252 KB
testcase_20 AC 57 ms
8,488 KB
testcase_21 WA -
testcase_22 AC 57 ms
7,632 KB
testcase_23 WA -
testcase_24 AC 61 ms
8,384 KB
testcase_25 WA -
testcase_26 AC 57 ms
7,992 KB
testcase_27 AC 57 ms
8,004 KB
testcase_28 AC 56 ms
8,576 KB
testcase_29 AC 56 ms
7,424 KB
testcase_30 AC 56 ms
9,044 KB
testcase_31 AC 57 ms
8,712 KB
testcase_32 AC 58 ms
8,508 KB
testcase_33 AC 57 ms
7,376 KB
testcase_34 AC 56 ms
8,132 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');
        res %= 3;
        base *= 4;
    }
    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');
        res %= 5;
        base *= 4;
    }
    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