結果
問題 | No.593 4進FizzBuzz |
ユーザー | squid |
提出日時 | 2017-11-11 00:04:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 859 bytes |
コンパイル時間 | 422 ms |
コンパイル使用メモリ | 56,240 KB |
実行使用メモリ | 16,192 KB |
最終ジャッジ日時 | 2024-05-03 14:57:03 |
合計ジャッジ時間 | 4,698 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,760 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,940 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
ソースコード
#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 ruijo(int x, int n){ int ret=x; if(n==0){ //cout<<1*x<<endl; return 1*x; } for(int i=0; i<n; i++){ ret=(ret*4)%5; } //cout<<ret<<endl; return ret; } 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+=ruijo(in[i]-'0',i)*(in[i]-'0'); } flag_buzz=bit_rest_sum%5==0; //cout<<bit_rest_sum<<endl; 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; }