結果

問題 No.129 お年玉(2)
ユーザー jjjj
提出日時 2016-10-10 18:14:21
言語 Fortran
(gFortran 14.2.0)
結果
AC  
実行時間 721 ms / 5,000 ms
コード長 867 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 31,488 KB
実行使用メモリ 393,856 KB
最終ジャッジ日時 2024-11-28 00:36:45
合計ジャッジ時間 24,884 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 318 ms
393,088 KB
testcase_01 AC 295 ms
392,812 KB
testcase_02 AC 291 ms
392,888 KB
testcase_03 AC 291 ms
392,924 KB
testcase_04 AC 292 ms
393,016 KB
testcase_05 AC 393 ms
393,344 KB
testcase_06 AC 553 ms
393,600 KB
testcase_07 AC 640 ms
393,680 KB
testcase_08 AC 399 ms
393,600 KB
testcase_09 AC 591 ms
393,472 KB
testcase_10 AC 628 ms
393,600 KB
testcase_11 AC 506 ms
393,552 KB
testcase_12 AC 355 ms
393,472 KB
testcase_13 AC 334 ms
393,472 KB
testcase_14 AC 575 ms
393,600 KB
testcase_15 AC 507 ms
393,728 KB
testcase_16 AC 520 ms
393,668 KB
testcase_17 AC 583 ms
393,680 KB
testcase_18 AC 590 ms
393,600 KB
testcase_19 AC 464 ms
393,600 KB
testcase_20 AC 601 ms
393,832 KB
testcase_21 AC 681 ms
393,728 KB
testcase_22 AC 533 ms
393,548 KB
testcase_23 AC 664 ms
393,660 KB
testcase_24 AC 394 ms
393,472 KB
testcase_25 AC 472 ms
393,556 KB
testcase_26 AC 475 ms
393,472 KB
testcase_27 AC 479 ms
393,476 KB
testcase_28 AC 721 ms
393,856 KB
testcase_29 AC 308 ms
393,020 KB
testcase_30 AC 291 ms
392,960 KB
testcase_31 AC 292 ms
392,948 KB
testcase_32 AC 291 ms
392,904 KB
testcase_33 AC 289 ms
392,832 KB
testcase_34 AC 291 ms
392,936 KB
testcase_35 AC 290 ms
392,908 KB
testcase_36 AC 291 ms
392,960 KB
testcase_37 AC 293 ms
392,976 KB
testcase_38 AC 325 ms
393,228 KB
testcase_39 AC 349 ms
393,216 KB
testcase_40 AC 465 ms
393,472 KB
testcase_41 AC 394 ms
393,344 KB
testcase_42 AC 333 ms
393,212 KB
testcase_43 AC 318 ms
393,216 KB
testcase_44 AC 530 ms
393,484 KB
testcase_45 AC 316 ms
393,084 KB
testcase_46 AC 325 ms
393,216 KB
testcase_47 AC 644 ms
393,728 KB
testcase_48 AC 419 ms
393,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
  implicit none
  integer*8::N,M,amari
  integer*4,parameter::sen=1000
  integer*4::memo(10**4,0:10**4)
  data memo/100010000*0/

  read *,N,M
  N = N/sen
  amari = MOD(N, M)
  memo = 0
  print '(i0)', get_combination(M, MIN(amari, M-amari), memo)
contains
  recursive function get_combination(N,R, memo) result(NCR)
    integer*8::N,R,NCR
    integer*4,parameter::modular=10**9
    integer*4::memo(10**4,0:10**4)
    if(memo(N,R).ne.0) then
       NCR = memo(N,R)
    else
       if(R.eq.0) then
          NCR = 1
       else if(R.eq.1) then
          NCR = N
       else if(N-R.lt.R) then
          NCR = get_combination(N, N-R, memo)
       else
          NCR = get_combination(N-1,R,memo) + get_combination(N-1,R-1,memo)
       end if
       NCR = MOD(NCR, modular)
       memo(N,R) = NCR
    end if
   end function get_combination
 end program main
0