結果
問題 | No.3022 縛りFizzBuzz (Easy) |
ユーザー | 👑 Nafmo2 |
提出日時 | 2017-03-31 22:34:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 788 bytes |
コンパイル時間 | 608 ms |
コンパイル使用メモリ | 73,256 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-07 04:56:30 |
合計ジャッジ時間 | 1,216 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#include<iostream> #include<cstdio> #include<cmath> #include<cstring> #include<string> #include<stack> #include<queue> #include<vector> typedef long long int ll; using namespace std; #define FOR(i,a,b) for (int i=(a);i<(b);i++) #define REP(i,n) for (int i=0;i<(n);i++) #define EREP(i,n) for (int i=1;i<=(n);i++) const int MOD = 1000000007; const int INF = 1000000; int N,a,b; // 100^n+(100^n-1)/99 1/99 (10^2i -1) int main(){ ios_base::sync_with_stdio(false); cin>>N; a++; a++; a++; b++; b++; b++; b++; b++; EREP(i,N){ if(i%a==0&&i%b!=0)cout<<"Fizz"<<endl; if(i%b==0&&i%a!=0)cout<<"Buzz"<<endl; if(i%b==0&&i%a==0)cout<<"FizzBuzz"<<endl; if(i%a!=0&&i%b!=0)cout<<i<<endl; } return 0; }