結果

問題 No.420 mod2漸化式
ユーザー kuuso1kuuso1
提出日時 2016-09-09 22:59:51
言語 F#
(F# 4.0)
結果
TLE  
実行時間 -
コード長 578 bytes
コンパイル時間 8,663 ms
コンパイル使用メモリ 188,812 KB
実行使用メモリ 871,088 KB
最終ジャッジ日時 2024-11-16 10:49:19
合計ジャッジ時間 45,436 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
37,952 KB
testcase_01 TLE -
testcase_02 MLE -
testcase_03 AC 300 ms
39,736 KB
testcase_04 AC 302 ms
37,816 KB
testcase_05 AC 303 ms
41,432 KB
testcase_06 MLE -
testcase_07 TLE -
testcase_08 AC 327 ms
40,920 KB
testcase_09 AC 372 ms
62,088 KB
testcase_10 AC 481 ms
37,552 KB
testcase_11 AC 739 ms
41,048 KB
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 AC 867 ms
34,104 KB
testcase_24 AC 560 ms
34,224 KB
testcase_25 AC 409 ms
33,972 KB
testcase_26 AC 338 ms
34,364 KB
testcase_27 AC 313 ms
34,092 KB
testcase_28 AC 309 ms
34,228 KB
testcase_29 AC 309 ms
33,684 KB
testcase_30 AC 304 ms
34,236 KB
testcase_31 AC 301 ms
34,096 KB
testcase_32 AC 300 ms
33,844 KB
testcase_33 AC 304 ms
34,232 KB
testcase_34 AC 309 ms
33,556 KB
testcase_35 AC 319 ms
73,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (252 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System

let ri () = stdin.ReadLine() |> int
let ria () = stdin.ReadLine().Split() |> Array.map int

type Sol() =
    member this.Solve() = 
        let x = ri ()
        
        let rec nCr n r :int64= 
            match (n,r) with
            | (_,0) -> 1L
            | (n,r) when r > n -> 0L
            | (_,_) ->( nCr (n-1) (r-1) ) + ( nCr (n-1) r) 
        
        let nc =(if x > 31 then 0L else nCr 31 x ) 
        let nn =(if x > 31 then 0L else nCr 30 (x-1) ) 
        
        printfn "%d %d" nc (2147483647L * nn)
        
let mySol = new Sol()
mySol.Solve()
0