結果

問題 No.593 4進FizzBuzz
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2019-03-19 20:30:15
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 685 bytes
コンパイル時間 684 ms
コンパイル使用メモリ 65,352 KB
実行使用メモリ 8,880 KB
最終ジャッジ日時 2024-09-14 06:29:09
合計ジャッジ時間 4,282 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 43 ms
7,908 KB
testcase_17 AC 42 ms
7,704 KB
testcase_18 AC 44 ms
8,880 KB
testcase_19 AC 43 ms
7,828 KB
testcase_20 AC 43 ms
7,816 KB
testcase_21 AC 43 ms
8,040 KB
testcase_22 AC 44 ms
7,312 KB
testcase_23 AC 44 ms
7,956 KB
testcase_24 AC 44 ms
7,056 KB
testcase_25 AC 43 ms
7,872 KB
testcase_26 AC 44 ms
7,532 KB
testcase_27 AC 44 ms
8,060 KB
testcase_28 AC 44 ms
8,440 KB
testcase_29 AC 43 ms
7,632 KB
testcase_30 AC 43 ms
7,948 KB
testcase_31 AC 43 ms
7,588 KB
testcase_32 AC 44 ms
7,668 KB
testcase_33 AC 44 ms
7,316 KB
testcase_34 AC 45 ms
7,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <math.h>

using ll = long long;
using namespace std;

const int MOD = 1e9+7;

int main() {
    string N;
    int a,b;
    a = b = 0;
    cin >> N;
    for(int i = 0; i < (int)N.length(); i++)
    {
        a += N[i] - '0';
        if (((int)N.length() - 1 - i) % 2) {
            b -= N[(int)N.length() - 1 - i] - '0';
        }
        else {
            b += N[(int)N.length() - 1 - i] - '0';
        }
    }
    if (a % 3 == 0) {
        cout << "Fizz";
    }
    if (b % 5 == 0) {
        cout << "Buzz";
    }
    if (a % 3 && b % 5) {
        cout << N;
    }
    cout << endl;
    return 0;
}
0