結果

問題 No.2679 MODice
ユーザー ID 21712ID 21712
提出日時 2024-11-11 10:08:27
言語 Go
(1.22.1)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 563 bytes
コンパイル時間 12,085 ms
コンパイル使用メモリ 220,480 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-11 10:08:43
合計ジャッジ時間 13,250 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 3 ms
5,248 KB
testcase_15 AC 3 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "math/big"

func main() {
	var n,k int
	Scan(&n,&k)
	c:=count(n)
	if one.Cmp(c[k])==0 {
		Println(166374059)
	}
}

var one = NewRat(1,6)
var n1 = []*Rat{
	one,one,one,
	one,one,one,
}
var memo = map[int][]*Rat{
	1: n1,
}
var tmp = new(Rat)
func count(n int) []*Rat {
	if r,ok := memo[n]; ok {
		return r
	}
	c1:=count(n/2)
	c2:=count(n-n/2)
	x:=make([]*Rat,6)
	for i:=range x {
		x[i]=NewRat(0,1)
	}
	for i,v:=range c1 {
		for k,w:=range c2 {
			p:=(i+k)%6
			tmp.Mul(v,w)
			x[p].Add(x[p],tmp)
		}
	}
	memo[n]=x
	return x
} 
0