結果

問題 No.40 多項式の割り算
ユーザー notetonousnotetonous
提出日時 2016-04-15 02:07:21
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 686 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 23,424 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-26 03:09:44
合計ジャッジ時間 1,156 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 1 ms
6,944 KB
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 0 ms
6,940 KB
testcase_32 AC 1 ms
6,940 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:40:14: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long long int’ [-Wformat=]
   40 |     printf("%d\n",u);
      |             ~^    ~
      |              |    |
      |              int  long long int
      |             %lld
main.c:43:14: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long long int’ [-Wformat=]
   43 |     printf("%d %d\n",u,t);
      |             ~^       ~
      |              |       |
      |              int     long long int
      |             %lld
main.c:43:17: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘long long int’ [-Wformat=]
   43 |     printf("%d %d\n",u,t);
      |                ~^      ~
      |                 |      |
      |                 int    long long int
      |                %lld
main.c:47:14: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long long int’ [-Wformat=]
   47 |     printf("%d %d %d\n",u,t,s);
      |             ~^          ~
      |              |          |
      |              int        long long int
      |             %lld
main.c:47:17: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘long long int’ [-Wformat=]
   47 |     printf("%d %d %d\n",u,t,s);
      |                ~^         ~
      |                 |         |
      |                 int       long long int
      |                %lld
main.c:47:20: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘long long int’ [-Wformat=]
   47 |     printf("%d %d %d\n",u,t,s);
      |                   ~^        ~
      |                    |        |
      |                    int      long long int
      |                   %lld
main.c:19:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  

ソースコード

diff #

#include <stdio.h>
#include <math.h>
int d;
int a[10000];

int f(int x){
  long long int ans=0;
  long long int i,j;
  for(i=1;i<=d;i++){ 
     ans=ans+a[i]*pow(x,i); 
  }
  return ans;
}

int main(){
  int i,j;
  long long int s,t,u;
  int order=2;
  scanf("%d",&d);
  for(i=0;i<=d;i++)scanf("%d",&a[i]);
  u=a[0];
  s=(f(1)+f(-1))/2;
  t=(f(1)-f(-1))/2;
  if(s!=0){
    printf("2\n");
    order=2;
  }
  else{
    if(t!=0){
      printf("1\n");
      order=1;
    }
    else {
      printf("0\n");
      order=0;
    }
  }
 
  if(order==0){
    printf("%d\n",u);
  }
  else if(order==1){
    printf("%d %d\n",u,t);
    
  }
  else{
    printf("%d %d %d\n",u,t,s);
  }
 
  return 0;
}
0