結果

問題 No.593 4進FizzBuzz
ユーザー aim_cpoaim_cpo
提出日時 2018-02-23 22:14:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 396 bytes
コンパイル時間 1,617 ms
コンパイル使用メモリ 163,696 KB
実行使用メモリ 9,008 KB
最終ジャッジ日時 2024-04-17 23:43:05
合計ジャッジ時間 5,068 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 43 ms
7,184 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 44 ms
7,308 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 43 ms
7,180 KB
testcase_27 AC 44 ms
7,176 KB
testcase_28 WA -
testcase_29 AC 44 ms
7,312 KB
testcase_30 AC 43 ms
7,308 KB
testcase_31 WA -
testcase_32 AC 43 ms
7,304 KB
testcase_33 AC 43 ms
7,304 KB
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define ll unsigned long long int
using namespace std;

string s;

int main(){
  cin>>s;
  int n=(int)s.size();
  ll sum=0;
  ll now=1;
  for(int i=n-1;i>=0;i--){
    sum+=now*(int)(s[i]-'0');
    now*=4;
  }
  if(sum%3==0 && sum%5==0)cout<<"FizzBuzz"<<"\n";
  else if(sum%3==0)cout<<"Fizz"<<"\n";
  else if(sum%5==0)cout<<"Buzz"<<"\n";
  else cout<<s<<"\n";
  return 0;
}
0