結果

問題 No.129 お年玉(2)
ユーザー akakimidoriakakimidori
提出日時 2017-06-10 22:09:58
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 224 ms / 5,000 ms
コード長 475 bytes
コンパイル時間 937 ms
コンパイル使用メモリ 21,504 KB
実行使用メモリ 234,880 KB
最終ジャッジ日時 2024-05-05 23:23:55
合計ジャッジ時間 6,837 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
18,048 KB
testcase_01 AC 224 ms
234,880 KB
testcase_02 AC 0 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 87 ms
104,576 KB
testcase_06 AC 143 ms
158,336 KB
testcase_07 AC 189 ms
190,848 KB
testcase_08 AC 123 ms
134,400 KB
testcase_09 AC 163 ms
176,768 KB
testcase_10 AC 181 ms
198,912 KB
testcase_11 AC 115 ms
129,408 KB
testcase_12 AC 150 ms
165,120 KB
testcase_13 AC 159 ms
172,032 KB
testcase_14 AC 151 ms
166,528 KB
testcase_15 AC 125 ms
139,392 KB
testcase_16 AC 142 ms
156,672 KB
testcase_17 AC 172 ms
187,392 KB
testcase_18 AC 164 ms
177,408 KB
testcase_19 AC 174 ms
188,288 KB
testcase_20 AC 173 ms
187,008 KB
testcase_21 AC 214 ms
229,760 KB
testcase_22 AC 120 ms
135,552 KB
testcase_23 AC 185 ms
202,624 KB
testcase_24 AC 194 ms
195,328 KB
testcase_25 AC 117 ms
130,176 KB
testcase_26 AC 118 ms
132,992 KB
testcase_27 AC 118 ms
129,408 KB
testcase_28 AC 214 ms
231,936 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 0 ms
5,376 KB
testcase_31 AC 0 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 3 ms
5,376 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 17 ms
33,152 KB
testcase_39 AC 26 ms
48,128 KB
testcase_40 AC 105 ms
121,600 KB
testcase_41 AC 58 ms
77,824 KB
testcase_42 AC 19 ms
37,248 KB
testcase_43 AC 20 ms
36,480 KB
testcase_44 AC 215 ms
233,088 KB
testcase_45 AC 11 ms
22,400 KB
testcase_46 AC 30 ms
52,864 KB
testcase_47 AC 207 ms
225,664 KB
testcase_48 AC 125 ms
141,184 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("%lld%d",&n,&m);
      |   ^~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

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

void run(void){
  long long int n;
  int m;
  scanf("%lld%d",&n,&m);
  int t=(int)(n%(1000*m))/1000;

  int *comb=(int *)calloc((m+1)*(m+1),sizeof(int));
  comb[0]=1;
  const int mod=1000000000;
  int i,j;
  for(i=1;i<=m;i++){
    comb[i*(m+1)]=1;
    for(j=1;j<=i;j++){
      comb[i*(m+1)+j]=(comb[(i-1)*(m+1)+j-1]+comb[(i-1)*(m+1)+j])%mod;
    }
  }
  printf("%d\n",comb[m*(m+1)+t]);
  return;
}

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