結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー K023C0066ゴランム カデイル
提出日時 2025-06-04 13:41:09
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 713 bytes
コンパイル時間 574 ms
コンパイル使用メモリ 27,264 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-06-04 13:41:11
合計ジャッジ時間 1,011 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

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

        int scanResult = scanf("%d", &num);
        
        if (scanResult != 1) {
            return 0;
        }

        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