結果

問題 No.294 SuperFizzBuzz
ユーザー akakimidoriakakimidori
提出日時 2017-05-06 15:24:43
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 310 ms / 5,000 ms
コード長 856 bytes
コンパイル時間 718 ms
コンパイル使用メモリ 22,144 KB
実行使用メモリ 339,016 KB
最終ジャッジ日時 2024-09-14 13:54:54
合計ジャッジ時間 5,372 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 179 ms
263,568 KB
testcase_01 AC 179 ms
263,340 KB
testcase_02 AC 310 ms
339,016 KB
testcase_03 AC 180 ms
263,432 KB
testcase_04 AC 179 ms
263,424 KB
testcase_05 AC 180 ms
263,496 KB
testcase_06 AC 179 ms
263,336 KB
testcase_07 AC 180 ms
263,388 KB
testcase_08 AC 187 ms
267,112 KB
testcase_09 AC 274 ms
329,588 KB
testcase_10 AC 145 ms
198,396 KB
testcase_11 AC 272 ms
301,960 KB
testcase_12 AC 303 ms
317,908 KB
testcase_13 AC 252 ms
327,900 KB
testcase_14 AC 257 ms
338,908 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘run’:
main.c:7:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |   scanf("%d",&n);
      |   ^~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
#include<stdlib.h>

void run(void){
  const int len=25;
  int n;
  scanf("%d",&n);

  int *now=(int *)malloc(sizeof(int)*(1<<(len+1)));
  int *next=(int *)malloc(sizeof(int)*(1<<(len+1)));

  now[0]=3;
  now[1]=5;
  int count=0;
  int i;
  for(i=1;i<=len;i++){
    int j;
    for(j=0;j<(1<<i);j++){
      if(now[j]%3==0 && (j&0x01)){
        count++;
        if(n==count){
          int k=i-1;
          while(k>=0){
            if((j>>k)&0x01){
              printf("5");
            } else {
              printf("3");
            }
            k--;
          }
          printf("\n");
          j=(1<<i)-1;
          i=len;
        }
      }
      next[2*j+0]=now[j]+3;
      next[2*j+1]=now[j]+5;
    }
    int *swap=now;
    now=next;
    next=swap;
  }
  free(now);
  free(next);
  return;
}

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