結果

問題 No.129 お年玉(2)
ユーザー jjjj
提出日時 2016-10-10 18:14:21
言語 Fortran
(gFortran 13.2.0)
結果
AC  
実行時間 624 ms / 5,000 ms
コード長 867 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 31,744 KB
実行使用メモリ 393,856 KB
最終ジャッジ日時 2024-05-05 23:10:54
合計ジャッジ時間 21,258 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
393,216 KB
testcase_01 AC 264 ms
392,832 KB
testcase_02 AC 262 ms
392,968 KB
testcase_03 AC 259 ms
392,928 KB
testcase_04 AC 265 ms
392,872 KB
testcase_05 AC 339 ms
393,340 KB
testcase_06 AC 478 ms
393,600 KB
testcase_07 AC 541 ms
393,852 KB
testcase_08 AC 327 ms
393,440 KB
testcase_09 AC 490 ms
393,644 KB
testcase_10 AC 513 ms
393,728 KB
testcase_11 AC 421 ms
393,696 KB
testcase_12 AC 305 ms
393,504 KB
testcase_13 AC 291 ms
393,452 KB
testcase_14 AC 477 ms
393,604 KB
testcase_15 AC 428 ms
393,576 KB
testcase_16 AC 446 ms
393,600 KB
testcase_17 AC 493 ms
393,452 KB
testcase_18 AC 504 ms
393,564 KB
testcase_19 AC 379 ms
393,688 KB
testcase_20 AC 510 ms
393,708 KB
testcase_21 AC 556 ms
393,856 KB
testcase_22 AC 430 ms
393,616 KB
testcase_23 AC 549 ms
393,600 KB
testcase_24 AC 323 ms
393,600 KB
testcase_25 AC 412 ms
393,728 KB
testcase_26 AC 394 ms
393,524 KB
testcase_27 AC 403 ms
393,596 KB
testcase_28 AC 624 ms
393,856 KB
testcase_29 AC 261 ms
392,940 KB
testcase_30 AC 263 ms
393,120 KB
testcase_31 AC 263 ms
392,912 KB
testcase_32 AC 266 ms
392,868 KB
testcase_33 AC 269 ms
392,944 KB
testcase_34 AC 263 ms
393,028 KB
testcase_35 AC 271 ms
392,960 KB
testcase_36 AC 267 ms
392,960 KB
testcase_37 AC 266 ms
392,960 KB
testcase_38 AC 288 ms
393,256 KB
testcase_39 AC 300 ms
393,412 KB
testcase_40 AC 385 ms
393,464 KB
testcase_41 AC 339 ms
393,388 KB
testcase_42 AC 289 ms
393,152 KB
testcase_43 AC 279 ms
393,120 KB
testcase_44 AC 434 ms
393,680 KB
testcase_45 AC 283 ms
393,156 KB
testcase_46 AC 291 ms
393,344 KB
testcase_47 AC 532 ms
393,648 KB
testcase_48 AC 343 ms
393,536 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