結果

問題 No.593 4進FizzBuzz
ユーザー squidsquid
提出日時 2017-11-11 00:10:43
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 56,612 KB
実行使用メモリ 8,856 KB
最終ジャッジ日時 2024-11-24 16:05:01
合計ジャッジ時間 3,171 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 1 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 1 ms
6,820 KB
testcase_15 AC 1 ms
6,816 KB
testcase_16 AC 41 ms
7,512 KB
testcase_17 AC 41 ms
8,192 KB
testcase_18 AC 40 ms
8,696 KB
testcase_19 AC 41 ms
7,816 KB
testcase_20 AC 40 ms
7,884 KB
testcase_21 AC 39 ms
8,124 KB
testcase_22 AC 40 ms
7,740 KB
testcase_23 AC 40 ms
8,220 KB
testcase_24 AC 41 ms
8,856 KB
testcase_25 AC 41 ms
7,184 KB
testcase_26 AC 41 ms
8,032 KB
testcase_27 AC 41 ms
7,184 KB
testcase_28 AC 41 ms
7,664 KB
testcase_29 AC 41 ms
7,816 KB
testcase_30 AC 40 ms
7,180 KB
testcase_31 AC 39 ms
7,852 KB
testcase_32 AC 40 ms
7,396 KB
testcase_33 AC 39 ms
7,468 KB
testcase_34 AC 40 ms
7,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;

string in;
long long int bit_sum=0,bit_rest_sum=0;
bool flag_fizz=false,flag_buzz=false;

int main(){
    cin>>in;

    for(int i=0; i<in.size(); i++){
        bit_sum+=in[i]-'0';
    }
    flag_fizz=bit_sum%3==0;

    for(int i=0; i<in.size(); i++){
        bit_rest_sum+=((i%2)?-1:1)*(in[i]-'0');
    }
    flag_buzz=bit_rest_sum%5==0;

    if(flag_fizz&&flag_buzz){
        cout<<"FizzBuzz"<<endl;
    }
    else if(flag_fizz){
        cout<<"Fizz"<<endl;
    }
    else if(flag_buzz){
        cout<<"Buzz"<<endl;
    }else{
        cout<<in<<endl;
    }

    return 0;
}
0