結果

問題 No.1476 esreveR dna esreveR
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-09-01 14:47:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 57 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 232,064 KB
最終ジャッジ日時 2024-05-05 18:03:24
合計ジャッジ時間 3,922 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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