結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー 0yuduki00yuduki0
提出日時 2015-09-17 01:41:04
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 396 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 20,352 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 06:50:29
合計ジャッジ時間 552 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:7:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |     scanf("%d%d", &x, &y);
      |     ^~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main()
{
    int x, y;
    
    scanf("%d%d", &x, &y);
    
    do {
    
        if (x % 15 == 0) {
            puts("FizzBuzz");
        } else if (x % 3 == 0) {
            puts("Fizz");
        } else if (x % 5 == 0) {
            puts("Buzz");
        } else {
            printf("%d\n", x);
        }
        
        x++;
    
    } while (x <= y);

    return 0;
}
0