結果

問題 No.1476 esreveR dna esreveR
ユーザー se1ka2se1ka2
提出日時 2021-04-16 20:02:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 228 bytes
コンパイル時間 548 ms
コンパイル使用メモリ 63,436 KB
実行使用メモリ 8,752 KB
最終ジャッジ日時 2023-09-15 20:04:18
合計ジャッジ時間 5,278 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
7,512 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1,243 ms
4,380 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
typedef long long ll;

const ll MOD = 998244353;

int main()
{
    int n;
    cin >> n;
    ll ans = 1;
    for(int i = 0; i < n / 2; i++) ans = ans * 6 % MOD;
    cout << ans << endl;
}
0