結果

問題 No.2079 aaabbc
ユーザー terasaterasa
提出日時 2022-09-28 19:57:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 55,936 KB
最終ジャッジ日時 2024-06-02 01:39:08
合計ジャッジ時間 1,700 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
55,680 KB
testcase_01 AC 52 ms
55,680 KB
testcase_02 AC 47 ms
55,424 KB
testcase_03 AC 46 ms
55,424 KB
testcase_04 AC 46 ms
55,936 KB
testcase_05 AC 46 ms
55,680 KB
testcase_06 AC 47 ms
55,680 KB
testcase_07 AC 48 ms
55,168 KB
testcase_08 AC 47 ms
55,936 KB
testcase_09 AC 51 ms
55,936 KB
testcase_10 AC 50 ms
55,680 KB
testcase_11 AC 48 ms
55,680 KB
testcase_12 AC 51 ms
55,680 KB
testcase_13 AC 48 ms
55,168 KB
testcase_14 AC 52 ms
55,680 KB
testcase_15 AC 52 ms
55,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict
from functools import lru_cache

# for AtCoder Easy test
if __file__ == 'prog.py':
    pass
else:
    sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')

input = sys.stdin.readline


def readints(): return map(int, input().split())
def readlist(): return list(readints())
def readstr(): return input()[:-1]


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