結果

問題 No.593 4進FizzBuzz
ユーザー Konton7Konton7
提出日時 2020-01-13 20:16:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 589 bytes
コンパイル時間 2,357 ms
コンパイル使用メモリ 200,984 KB
実行使用メモリ 8,912 KB
最終ジャッジ日時 2024-06-01 10:18:32
合計ジャッジ時間 5,301 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 WA -
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 WA -
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 46 ms
8,148 KB
testcase_17 WA -
testcase_18 AC 48 ms
7,424 KB
testcase_19 AC 49 ms
7,912 KB
testcase_20 WA -
testcase_21 AC 48 ms
7,776 KB
testcase_22 AC 49 ms
7,740 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 48 ms
7,464 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 49 ms
7,636 KB
testcase_30 WA -
testcase_31 AC 48 ms
8,108 KB
testcase_32 AC 48 ms
7,248 KB
testcase_33 AC 47 ms
7,632 KB
testcase_34 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:23:29: warning: 'c' may be used uninitialized [-Wmaybe-uninitialized]
   23 |     if ( (a - b)  % 11 == 0 && c == 3 )
      |          ~~~~~~~~~~~~~~~~~~~^~~~~~~~~
main.cpp:10:15: note: 'c' was declared here
   10 |     int a, b, c;
      |               ^

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
typedef long long ll;

int main(){
    
    string s;
    cin >> s;
    int a, b, c;
    a = b = 0;
    int n = s.size();
    
    for (int i = 0; i < n; i++){
        c += s[i] - '0';
        if ((i - '0') % 2 == 0)
            a += s[i] - '0';
        else
            b += s[i] - '0';
    }
    
    string ans = s;
    if ( (a - b)  % 11 == 0 && c == 3 )
        ans = "FizzBuzz";
    else if ((a - b)  % 11 == 0)
        ans = "Buzz";
    else if (c % 3 == 0)
        ans = "Fizz";
    
    
    cout << ans << endl;
    return 0;
    
}
0