結果

問題 No.1476 esreveR dna esreveR
ユーザー kohei2019kohei2019
提出日時 2023-06-22 23:01:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 53,576 KB
最終ジャッジ日時 2024-06-30 05:10:31
合計ジャッジ時間 1,322 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,068 KB
testcase_01 AC 36 ms
53,136 KB
testcase_02 AC 37 ms
53,576 KB
testcase_03 AC 38 ms
52,304 KB
testcase_04 AC 39 ms
52,392 KB
testcase_05 AC 36 ms
52,756 KB
testcase_06 AC 36 ms
53,132 KB
testcase_07 AC 36 ms
52,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def modPow(a,n,mod):#繰り返し二乗法 a**n % mod
    if n==0:
        return 1
    if n==1:
        return a%mod
    if n & 1:
        return (a*modPow(a,n-1,mod)) % mod
    t = modPow(a,n>>1,mod)
    return (t*t)%mod
N = int(input())
mod = 998244353
s = 4*3//2
ans = modPow(s,(N//2),mod)
print(ans)
0