結果

問題 No.1476 esreveR dna esreveR
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-09-01 14:47:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 57 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 268,484 KB
最終ジャッジ日時 2024-11-27 17:51:56
合計ジャッジ時間 15,958 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,128 KB
testcase_01 AC 39 ms
268,484 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 37 ms
59,776 KB
testcase_06 TLE -
testcase_07 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
mo = 998244353
print(6 ** (n // 2) % mo)
0