結果

問題 No.9002 FizzBuzz(テスト用)
ユーザー rye_nocrye_noc
提出日時 2015-04-22 14:10:11
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 715 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 21,248 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-05 00:13:26
合計ジャッジ時間 953 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
int main (void){
        int n,count;
        scanf("%d",&n);
        if ( (n >= 1) && (n <=100) ){
                for(count = 1; count <= n ; count++){
                        if( count % 15 == 0 ){
                                printf("FizzBuzz\n");
                        } else if (count % 3 == 0){
                                printf("Fizz\n");
                        } else if (count % 5 == 0){
                                printf("Buzz\n");
                        } else {
                                printf ("%d\n",count);
                        }
                }
        } else {
                return EXIT_SUCCESS;
        }

        return 0;
}
0