結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー h81493h81493
提出日時 2024-05-14 21:44:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 1,333 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 31,104 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-14 21:44:13
合計ジャッジ時間 1,237 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,948 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <string.h>

// 関数宣言
int fizzbuzz_response_length(int n);

int main() {
    int n1,n2,n3,n4,n5;
    // Dengklek が言った整数を入力
    scanf("%d %d %d %d %d", &n1,&n2,&n3,&n4,&n5);
    // fizzbuzz_response_length関数を呼び出して、応答の文字数を取得
    int response_length = 0;
    response_length = response_length + fizzbuzz_response_length(n1);
    response_length = response_length + fizzbuzz_response_length(n2);
    response_length = response_length + fizzbuzz_response_length(n3);
    response_length = response_length + fizzbuzz_response_length(n4);
    response_length = response_length + fizzbuzz_response_length(n5);
    // 結果を表示
    printf("%d\n", response_length);
    return 0;
}

// fizzbuzz_response_length 関数
int fizzbuzz_response_length(int n) {
  int i=5;
  int ret=0;
  if ( n % 3 == 0 && n % 5 == 0) {
      // "FizzBuzz" の文字数は 8
      ret=8;
  } else if (n % 3 == 0) {
      // "Fizz" の文字数は 4
      ret=4;
  } else if (n % 5 == 0) {
      // "Buzz" の文字数は 4
      ret=4;
  } else {
      // 整数をそのまま返す場合、その整数の文字数を計算
      char buffer[20];  // 十分に大きなバッファを用意
      sprintf(buffer, "%d", n);
      ret=strlen(buffer);
  }
  return ret;
}
0