結果

問題 No.3043 yukicoderへようこそ!
ユーザー akakimidoriakakimidori
提出日時 2019-04-01 23:09:38
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 614 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 30,080 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 08:52:26
合計ジャッジ時間 585 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<stdlib.h>
#include<stdint.h>
#include<inttypes.h>
#include<string.h>
#include<math.h>

typedef int32_t i32;
typedef int64_t i64;

#define MAX(a,b) ((a) > (b) ? (a) : (b))
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#define ABS(a) ((a) > (0) ? (a) : -(a))

void run (void) {
  i32 n;
  scanf ("%" SCNi32, &n);
  for (i32 i = 1; i <= n; ++i) {
    if (i % 15 == 0) {
      puts("FizzBuzz");
    } else if (i % 3 == 0) {
      puts("Fizz");
    } else if (i % 5 == 0) {
      puts("Buzz");
    } else {
      printf ("%" PRIi32 "\n", i);
    }
  }
}

int main (void) {
  run ();
  return 0;
}
0