結果
問題 | No.3022 縛りFizzBuzz (Easy) |
ユーザー | rsk0315 |
提出日時 | 2020-02-24 21:07:37 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 507 bytes |
コンパイル時間 | 529 ms |
コンパイル使用メモリ | 56,060 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-10-12 12:32:48 |
合計ジャッジ時間 | 1,269 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
ソースコード
#include <cstdio> #include <string> #define length(x) ((#x ## s).length()) using namespace std::literals; int const one = length(x); int const three = length(xxx); int const five = length(xxxxx); int main() { int n; scanf("%d", &n); for (int i = one; i <= n; ++i) { if ((i % three < one) && (i % five < one)) { puts("FizzBuzz"); } else if (i % three < one) { puts("Fizz"); } else if (i % five < one) { puts("Buzz"); } else { printf("%d\n", i); } } }