結果
問題 | No.3022 縛りFizzBuzz (Easy) |
ユーザー | neckrawarmer |
提出日時 | 2021-09-09 21:55:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 784 bytes |
コンパイル時間 | 3,238 ms |
コンパイル使用メモリ | 228,240 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-06-10 02:25:19 |
合計ジャッジ時間 | 4,223 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #if __has_include(<atcoder/all>) #include <atcoder/all> using namespace atcoder; #endif using ll = long long; using ld = long double; #define endl "\n" #define rep(i,a,b) for(int i=a;i<b;i++) #define rrep(i,a,b) for(int i=a;i>=b;i--) #define fore(i,a) for(auto &i:a) #define all(x) (x).begin(),(x).end() #define del(x) sort(all(x)); x.erase(unique(all(x)),x.end()); int main(){ ll n; cin >> n; ll zero='a'-'a'; ll one='b'-'a'; ll three='d'-'a'; ll five='f'-'a'; rep(i,one,n+one){ if(i%three==zero && i%five==zero){ cout << "FizzBuzz"<<endl; } else if(i%three==zero){ cout << "Fizz"<<endl; } else if(i%five==zero){ cout << "Buzz"<<endl; } else{ cout << i << endl; } } }