結果
問題 |
No.129 お年玉(2)
|
ユーザー |
|
提出日時 | 2016-02-26 17:11:37 |
言語 | Go (1.23.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 629 bytes |
コンパイル時間 | 12,526 ms |
コンパイル使用メモリ | 240,856 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-10 22:53:50 |
合計ジャッジ時間 | 12,221 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 WA * 40 |
ソースコード
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 % 1000000000 } func nextLine() string { sc.Scan() return sc.Text() } func nextInt() int { i, _ := strconv.Atoi(nextLine()) return i }