結果
問題 | No.3022 縛りFizzBuzz (Easy) |
ユーザー | T101010101 |
提出日時 | 2024-10-07 14:06:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 524 bytes |
コンパイル時間 | 4,240 ms |
コンパイル使用メモリ | 259,644 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-07 14:06:14 |
合計ジャッジ時間 | 3,956 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/extc++.h> using namespace std; int zero; signed main() { int three = zero; three++; three++; three++; int five = three; five++; five++; int juugo = three * five; int one = zero; one++; int N; cin >> N; for (int i = one; i <= N; i++) { if (i % juugo == zero) cout << "FizzBuzz" << endl; else if (i % three == zero) cout << "Fizz" << endl; else if (i % five == zero) cout << "Buzz" << endl; else cout << i << endl; } }