結果
問題 | No.3022 縛りFizzBuzz (Easy) |
ユーザー | gigime |
提出日時 | 2017-03-31 22:33:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 701 bytes |
コンパイル時間 | 1,251 ms |
コンパイル使用メモリ | 166,488 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-07 04:55:54 |
合計ジャッジ時間 | 1,959 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 == 0 && i % five == 0){ printf("FizzBuzz\n"); } else if(i % three == 0){ printf("Fizz\n"); } else if(i % five == 0){ printf("Buzz\n"); } else{ printf("%d\n",i); } } return 0; }