結果

問題 No.129 お年玉(2)
ユーザー yukirin
提出日時 2016-02-26 16:51:22
言語 Go
(1.23.4)
結果
WA  
実行時間 -
コード長 616 bytes
コンパイル時間 11,150 ms
コンパイル使用メモリ 229,320 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-10 22:53:18
合計ジャッジ時間 12,538 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5 WA * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
	"strconv"
)

var sc = bufio.NewScanner(os.Stdin)
var rdr = bufio.NewReaderSize(os.Stdin, 1000000)

func main() {
	sc.Split(bufio.ScanWords)
	n, m := nextInt(), nextInt()
	n -= n % 1000
	mod := (n/1000 - n/(1000*m)*m)
	fmt.Println(ncr(uint64(m), uint64(mod)))
}

func ncr(n, r uint64) uint64 {
	k := r
	if k > n/2 {
		k = n - r
	}

	ret := uint64(1)
	for i := uint64(1); i <= k; i++ {
		ret *= (n - i + 1) % 1000000000
		ret /= i
	}
	return ret
}
func nextLine() string {
	sc.Scan()
	return sc.Text()
}

func nextInt() int {
	i, _ := strconv.Atoi(nextLine())
	return i
}
0