結果

問題 No.1476 esreveR dna esreveR
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-09-01 14:47:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 57 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 87,340 KB
実行使用メモリ 228,856 KB
最終ジャッジ日時 2023-08-18 12:45:56
合計ジャッジ時間 4,222 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
76,020 KB
testcase_01 AC 74 ms
71,400 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