結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー K023C0066ゴランム カデイル
提出日時 2025-06-04 13:33:58
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 614 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 27,136 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2025-06-04 13:34:00
合計ジャッジ時間 1,033 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |         scanf("%d", &num);
      |         ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
int main(void)
{
        int i;
        int num;
        bool debounce;

        scanf("%d", &num);

        for (i = 1; i <= num; i++) {
                debounce = true;

                if ((i % 3) == 0) {
                        printf("Fizz");
                        debounce = false;
                }
                if ((i % 5) == 0) {
                        printf("Buzz");
                        debounce = false;
                }
                if (debounce) {
                        printf("%d", i);
                }

                printf("\n");
        }
        return 0;
}
0