結果

問題 No.593 4進FizzBuzz
ユーザー ミドリムシミドリムシ
提出日時 2017-11-10 22:33:51
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 587 bytes
コンパイル時間 661 ms
コンパイル使用メモリ 70,400 KB
実行使用メモリ 7,316 KB
最終ジャッジ日時 2024-11-24 12:44:53
合計ジャッジ時間 3,258 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;

int main(){
    string N;
    cin >> N;
    int mod_3 = 0;
    int mod_5 = 0;
    for(int i = 0; i < N.size(); i++){
        mod_3 += N[i] - '0';
        if((N.size() - i) % 2 == 0){
            mod_5 += (N[i] - '0') * 4;
        }else{
            mod_5 += N[i] - '0';
        }
    }
    string ans = "";
    if(mod_3 % 3 == 0){
        ans = "Fizz";
    }
    if(mod_5 % 5 == 0){
        ans += "Buzz";
    }
    if(ans == ""){
        cout << N << endl;
    }else{
        cout << ans << endl;
    }
}
0