結果
問題 | No.593 4進FizzBuzz |
ユーザー | gotutiyan |
提出日時 | 2017-11-11 00:16:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 917 bytes |
コンパイル時間 | 668 ms |
コンパイル使用メモリ | 81,528 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-03 15:02:10 |
合計ジャッジ時間 | 3,098 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <cstdio> #include <vector> #include <map> #include <set> #include <algorithm> #include <string> #include <cstdlib> #include <stack> #include <queue> #include <cmath> #define rep(i,j,k) for(int i=(int)j;i<(int)k;i++) #define repp(i,j,k) for(int i=j;i>=k;i--) #define llrep(i,j,k) for(long long int i=j;i<(long long int)k;i++) #define Sort(x) sort(x.begin(),x.end()); #define vi vector<int> #define vvi vector<vector<int>> #define ll long long int mod=1e9+7; const int INF = 1e9; using namespace std; int main(void) { long long n,nn,val=0; long long count = 1,a=3,b=5; cin >> n; nn = n; while (n > 0) { val += n % 10 * count; count *= 4; n /= 10; } bool judge = true; if (val % a == 0) { cout << "Fizz"; judge = false; } if (val % b == 0) { cout << "Buzz"; judge = false; } if (judge)cout << nn; cout << endl; return 0; }