結果

問題 No.1476 esreveR dna esreveR
ユーザー ID 21712ID 21712
提出日時 2024-12-12 18:30:44
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 204 bytes
コンパイル時間 11,247 ms
コンパイル使用メモリ 222,436 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-12 18:31:02
合計ジャッジ時間 12,007 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

package main

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

func main() {
	var n int64
	Scan(&n)
	x:=NewInt(n/2)
	const M=998244353
	x.Exp(NewInt(6),x,NewInt(M))
	x.Add(x,NewInt(n%2)).Mod(x,NewInt(M))
	Println(x)
}
0