結果

問題 No.129 お年玉(2)
ユーザー jjjj
提出日時 2016-10-10 17:59:05
言語 Fortran
(gFortran 13.2.0)
結果
TLE  
実行時間 -
コード長 608 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 31,104 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-22 00:57:32
合計ジャッジ時間 254,453 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1 ms
9,124 KB
testcase_02 AC 1 ms
7,552 KB
testcase_03 AC 1 ms
7,936 KB
testcase_04 AC 1 ms
8,064 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 2 ms
7,552 KB
testcase_30 AC 1 ms
7,424 KB
testcase_31 AC 1 ms
7,424 KB
testcase_32 TLE -
testcase_33 AC 1 ms
7,552 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
  implicit none
  integer*8::N,M,amari
  integer*8,parameter::sen=1000
  read *,N,M
  N = N/sen
  amari = MOD(N, M)
  print '(i0)', get_combination(M, MIN(amari, M-amari))
contains
  recursive function get_combination(N,R) result(NCR)
    integer*8::N,R,NCR
    integer*8,parameter::modular=10**9
    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)
    else
       NCR = get_combination(N-1,R) + get_combination(N-1,R-1)
    end if
    NCR = MOD(NCR, modular)
  end function get_combination
end program main
0