結果
問題 | No.3022 縛りFizzBuzz (Easy) |
ユーザー | firiexp |
提出日時 | 2020-03-25 13:38:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 539 bytes |
コンパイル時間 | 843 ms |
コンパイル使用メモリ | 95,864 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-10 09:58:10 |
合計ジャッジ時間 | 1,483 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <map> #include <set> #include <queue> #include <stack> #include <numeric> #include <bitset> #include <cmath> using namespace std; int main() { int n; cin >> n; int one = int(), zero = one++; int three = one+one+one, five = three+one+one; for (int i = one; i <= n; ++i) { string ans; if(!(i%three)) ans += "Fizz"; if(!(i%five)) ans += "Buzz"; cout << (ans.size() ? ans : to_string(i)) << "\n"; } return zero; }