結果

問題 No.1476 esreveR dna esreveR
ユーザー TomoyarnTomoyarn
提出日時 2022-02-05 05:31:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 198 bytes
コンパイル時間 1,184 ms
コンパイル使用メモリ 86,764 KB
実行使用メモリ 79,600 KB
最終ジャッジ日時 2023-09-02 06:27:03
合計ジャッジ時間 6,008 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,304 KB
testcase_01 AC 72 ms
71,464 KB
testcase_02 AC 1,313 ms
75,304 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