結果
問題 | No.3022 縛りFizzBuzz (Easy) |
ユーザー | gigime |
提出日時 | 2017-03-31 22:34:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 705 bytes |
コンパイル時間 | 1,498 ms |
コンパイル使用メモリ | 165,268 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-07 04:56:19 |
合計ジャッジ時間 | 1,770 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define FOR(i,l,r) for(int i = (int) (l);i < (int) (r);i++) #define ALL(x) x.begin(),x.end() template<typename T> bool chmax(T& a,const T& b){ return a < b ? (a = b,true) : false; } template<typename T> bool chmin(T& a,const T& b){ return b < a ? (a = b,true) : false; } typedef long long ll; int N; int main() { scanf("%d",&N); int three = !!N + !!N + !!N; int five = !!N + !!N + !!N + !!N + !!N; for(int i = !!N;i <= N;i++){ if(i % three == !N && i % five == !N){ printf("FizzBuzz\n"); } else if(i % three == !N){ printf("Fizz\n"); } else if(i % five == !N){ printf("Buzz\n"); } else{ printf("%d\n",i); } } return 0; }