結果

問題 No.2079 aaabbc
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-09-25 22:59:03
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 87,108 KB
実行使用メモリ 73,016 KB
最終ジャッジ日時 2023-08-24 02:30:40
合計ジャッジ時間 2,998 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
72,856 KB
testcase_01 AC 105 ms
72,788 KB
testcase_02 AC 113 ms
72,968 KB
testcase_03 AC 106 ms
72,752 KB
testcase_04 AC 106 ms
72,936 KB
testcase_05 AC 104 ms
72,956 KB
testcase_06 AC 107 ms
72,816 KB
testcase_07 AC 107 ms
72,984 KB
testcase_08 AC 105 ms
72,984 KB
testcase_09 AC 106 ms
72,928 KB
testcase_10 AC 106 ms
72,980 KB
testcase_11 AC 107 ms
72,752 KB
testcase_12 AC 107 ms
72,840 KB
testcase_13 AC 107 ms
73,016 KB
testcase_14 AC 108 ms
72,852 KB
testcase_15 AC 107 ms
72,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline


N = int(input())
mod = 998244353
print(pow(3,N,mod))
0