結果

問題 No.593 4進FizzBuzz
ユーザー polylogKpolylogK
提出日時 2017-11-10 22:40:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 604 bytes
コンパイル時間 1,426 ms
コンパイル使用メモリ 168,304 KB
実行使用メモリ 9,248 KB
最終ジャッジ日時 2024-11-24 12:56:54
合計ジャッジ時間 4,945 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 1 ms
6,816 KB
testcase_13 AC 1 ms
6,816 KB
testcase_14 AC 1 ms
6,820 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 72 ms
7,652 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 72 ms
8,596 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 73 ms
8,024 KB
testcase_27 AC 73 ms
7,488 KB
testcase_28 WA -
testcase_29 AC 72 ms
7,312 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 70 ms
8,292 KB
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i,a,b) for(int i=(a);i<(b);i++)
#define RREP(i,a,b) for(int i=(a);i>=(b);i--)
#define pq priotity_queue
#define P pair<int,int>
#define P2 pair<int,P>
#define P3 pair<int,P2>
typedef long long ll; typedef long double ld;
using namespace std;
const int INF=1e9, MOD=1e9+7, around[]={0,1,1,-1,-1,0,-1,1,0,0};
const ld PI=abs(acos(-1));
int n,li[200010]={};
string s;

int main(){
	cin >> s;
	ll pos=0;
	REP(i,0,s.size()) pos+=(s[i]-'0')*pow(4,i);
	
	if(pos%3 and pos%5) cout << s;
	if(!(pos%3)) cout << "Fizz";
	if(!(pos%5)) cout << "Buzz";
	cout << endl;
	return 0;
}
0