結果

問題 No.1253 雀見椪
ユーザー tatt61880tatt61880
提出日時 2021-02-15 23:09:05
言語 Kuin
(KuinC++ v.2021.9.17)
結果
TLE  
実行時間 -
コード長 1,612 bytes
コンパイル時間 4,303 ms
コンパイル使用メモリ 152,348 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-16 11:24:50
合計ジャッジ時間 26,474 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

func main()
	var t: int :: cui@inputInt()
	for(1, t)
		var n: int :: cui@inputInt()
		var g: int :: cui@inputInt()
		var G: int :: cui@inputInt()
		var c: int :: cui@inputInt()
		var C: int :: cui@inputInt()
		var p: int :: cui@inputInt()
		var P: int :: cui@inputInt()
		var mod: int :: 1000000007
		
		var ans: modInt :: (#modInt).init(0, mod)
		do ans.add((#modInt).init(G, mod).mul(C).mul(P).pow(n).val)
		do ans.add((#modInt).init(g, mod).mul(C).mul(P).pow(n).val * 2)
		do ans.add((#modInt).init(G, mod).mul(c).mul(P).pow(n).val * 2)
		do ans.add((#modInt).init(G, mod).mul(C).mul(p).pow(n).val * 2)
		do ans.sub((#modInt).init(G - g, mod).mul(C).mul(P).pow(n).val)
		do ans.sub((#modInt).init(G, mod).mul(C - c).mul(P).pow(n).val)
		do ans.sub((#modInt).init(G, mod).mul(C).mul(P - p).pow(n).val)
		do ans.div((#modInt).init(G, mod).mul(C).mul(P).pow(n).val)
		do cui@print("\{ans}\n")
	end for
	
	class modInt()
		+var val: int
		var mod: int
		+func init(val: int, mod: int): modInt
			do me.val :: val
			do me.mod :: mod
			ret me
		end func
		+func add(a: int): modInt
			do me.val :: (me.val + a) % me.mod
			ret me
		end func
		+func sub(a: int): modInt
			do me.val :: (me.val + me.mod - a) % me.mod
			ret me
		end func
		+func mul(a: int): modInt
			do me.val :: (me.val * a) % me.mod
			ret me
		end func
		+func div(a: int): modInt
			do me.val :: me.val * math@modPow(a, me.mod - 2, me.mod) % me.mod
			ret me
		end func
		+func pow(a: int): modInt
			do me.val :: math@modPow(me.val, a, me.mod)
			ret me
		end func
		+*func toStr(): []char
			ret "\{me.val}"
		end func
	end class
end func
0