結果

問題 No.1476 esreveR dna esreveR
ユーザー TomoyarnTomoyarn
提出日時 2022-02-05 05:31:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 198 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 62,208 KB
最終ジャッジ日時 2024-06-11 13:21:31
合計ジャッジ時間 5,002 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

def yukicoder1476_esreveRdnaesreveR(N):
    t = N // 2
    ans = 1
    for _ in range(t):
        ans = ans * 6 % 998244353
    return ans

N = int(input())
print(yukicoder1476_esreveRdnaesreveR(N))
0