結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
18,048 KB
testcase_01 AC 236 ms
234,752 KB
testcase_02 AC 0 ms
5,248 KB
testcase_03 AC 0 ms
5,248 KB
testcase_04 AC 0 ms
5,248 KB
testcase_05 AC 96 ms
104,448 KB
testcase_06 AC 145 ms
158,208 KB
testcase_07 AC 181 ms
190,720 KB
testcase_08 AC 123 ms
134,400 KB
testcase_09 AC 164 ms
176,768 KB
testcase_10 AC 186 ms
199,040 KB
testcase_11 AC 118 ms
129,280 KB
testcase_12 AC 151 ms
164,992 KB
testcase_13 AC 160 ms
172,032 KB
testcase_14 AC 155 ms
166,656 KB
testcase_15 AC 128 ms
139,264 KB
testcase_16 AC 144 ms
156,800 KB
testcase_17 AC 177 ms
187,264 KB
testcase_18 AC 165 ms
177,280 KB
testcase_19 AC 179 ms
188,160 KB
testcase_20 AC 177 ms
186,880 KB
testcase_21 AC 221 ms
229,632 KB
testcase_22 AC 125 ms
135,552 KB
testcase_23 AC 193 ms
202,752 KB
testcase_24 AC 185 ms
195,200 KB
testcase_25 AC 121 ms
130,048 KB
testcase_26 AC 124 ms
132,992 KB
testcase_27 AC 120 ms
129,280 KB
testcase_28 AC 223 ms
231,808 KB
testcase_29 AC 0 ms
5,248 KB
testcase_30 AC 1 ms
5,248 KB
testcase_31 AC 1 ms
5,248 KB
testcase_32 AC 1 ms
5,248 KB
testcase_33 AC 3 ms
5,248 KB
testcase_34 AC 1 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 3 ms
5,248 KB
testcase_37 AC 3 ms
5,248 KB
testcase_38 AC 27 ms
33,280 KB
testcase_39 AC 41 ms
48,000 KB
testcase_40 AC 111 ms
121,600 KB
testcase_41 AC 76 ms
77,824 KB
testcase_42 AC 32 ms
37,248 KB
testcase_43 AC 31 ms
36,480 KB
testcase_44 AC 222 ms
232,960 KB
testcase_45 AC 17 ms
22,400 KB
testcase_46 AC 45 ms
52,992 KB
testcase_47 AC 217 ms
225,664 KB
testcase_48 AC 130 ms
141,056 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