結果
問題 | No.3022 縛りFizzBuzz (Easy) |
ユーザー | latte0119 |
提出日時 | 2017-03-31 22:24:51 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 716 bytes |
コンパイル時間 | 1,194 ms |
コンパイル使用メモリ | 159,000 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-07 04:51:48 |
合計ジャッジ時間 | 1,599 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define int long long #define rep(i,n) for(int i=0;i<(n);i++) #define pb push_back #define all(v) (v).begin(),(v).end() #define fi first #define se second typedef vector<int>vint; typedef pair<int,int>pint; typedef vector<pint>vpint; template<typename A,typename B>inline void chmin(A &a,B b){if(a>b)a=b;} template<typename A,typename B>inline void chmax(A &a,B b){if(a<b)a=b;} int x,y,i; signed main(){ int N;cin>>N; x++;x++;x++; y++;y++;y++;y++;y++; i++; for(;i<=N;i++){ if(!(i%x)&&!(i%y))cout<<"FizzBuzz"<<endl; else if(!(i%x))cout<<"Fizz"<<endl; else if(!(i%y))cout<<"Buzz"<<endl; else cout<<i<<endl; } }