結果

問題 No.2079 aaabbc
ユーザー ntudantuda
提出日時 2022-10-01 17:10:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 52 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 87,296 KB
実行使用メモリ 71,532 KB
最終ジャッジ日時 2023-08-25 14:52:11
合計ジャッジ時間 2,652 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
71,532 KB
testcase_01 AC 56 ms
71,140 KB
testcase_02 AC 58 ms
71,028 KB
testcase_03 AC 57 ms
71,292 KB
testcase_04 AC 57 ms
71,336 KB
testcase_05 AC 56 ms
71,228 KB
testcase_06 AC 61 ms
71,484 KB
testcase_07 AC 60 ms
71,332 KB
testcase_08 AC 63 ms
71,324 KB
testcase_09 AC 62 ms
71,268 KB
testcase_10 AC 68 ms
71,472 KB
testcase_11 AC 62 ms
71,028 KB
testcase_12 AC 64 ms
71,288 KB
testcase_13 AC 61 ms
71,352 KB
testcase_14 AC 59 ms
71,328 KB
testcase_15 AC 57 ms
71,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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