結果

問題 No.129 お年玉(2)
ユーザー fmhrfmhr
提出日時 2015-04-23 06:54:06
言語 Go
(1.22.1)
結果
MLE  
実行時間 -
コード長 805 bytes
コンパイル時間 11,183 ms
コンパイル使用メモリ 239,008 KB
実行使用メモリ 784,784 KB
最終ジャッジ日時 2024-10-10 03:49:38
合計ジャッジ時間 47,421 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
142,736 KB
testcase_01 MLE -
testcase_02 AC 20 ms
6,816 KB
testcase_03 AC 4 ms
6,816 KB
testcase_04 AC 4 ms
6,820 KB
testcase_05 AC 738 ms
387,216 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 AC 963 ms
483,476 KB
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 953 ms
466,708 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 AC 1,002 ms
499,604 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 996 ms
487,444 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 AC 966 ms
469,520 KB
testcase_26 AC 919 ms
478,992 KB
testcase_27 AC 892 ms
466,960 KB
testcase_28 MLE -
testcase_29 AC 4 ms
6,820 KB
testcase_30 AC 3 ms
6,820 KB
testcase_31 AC 4 ms
10,508 KB
testcase_32 AC 4 ms
10,512 KB
testcase_33 AC 23 ms
65,940 KB
testcase_34 AC 12 ms
39,180 KB
testcase_35 AC 21 ms
61,708 KB
testcase_36 AC 23 ms
65,936 KB
testcase_37 AC 28 ms
76,176 KB
testcase_38 AC 188 ms
179,732 KB
testcase_39 AC 274 ms
220,056 KB
testcase_40 AC 833 ms
442,132 KB
testcase_41 AC 452 ms
305,684 KB
testcase_42 AC 209 ms
189,712 KB
testcase_43 AC 208 ms
188,184 KB
testcase_44 MLE -
testcase_45 AC 123 ms
153,616 KB
testcase_46 AC 301 ms
232,720 KB
testcase_47 MLE -
testcase_48 AC 1,013 ms
505,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
    "fmt"
)


func pascal( n, m , mod int64) int64 {
    n += 1
    var p [10001][10001]int64
    p[0][0] = 1
    var i, j int64
    for i=1; i<n; i++ {
        for j=0; j<n; j++ {
//            fmt.Println(i,j)
//            fmt.Println(p[i][j])
//            fmt.Println(p[i-1][j-1])
//            fmt.Println(p[i-1][j-1])
            if j == 0 {
                p[i][j] = 1
            } else {
                p[i][j] = (p[i-1][j-1]+p[i-1][j])%mod
            }
        }
    }
    return p[n-1][m]
}

func main() {
    var mod int64
    mod = 1000000000
    var N, M int64
    fmt.Scan(&N)
    fmt.Scan(&M)
    var a, b, c int64
    a = N/1000/M
    b = N - (a * M) * 1000
    c = b/1000
    N /= 1000
    N %= M
//    fmt.Println(M, c)
    fmt.Println(pascal(M, c, mod)%mod)
}
0