結果

問題 No.1476 esreveR dna esreveR
ユーザー TomoyarnTomoyarn
提出日時 2022-02-05 05:36:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 158 bytes
コンパイル時間 1,304 ms
コンパイル使用メモリ 87,052 KB
実行使用メモリ 71,432 KB
最終ジャッジ日時 2023-09-02 06:27:06
合計ジャッジ時間 1,570 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,432 KB
testcase_01 AC 71 ms
71,172 KB
testcase_02 AC 69 ms
71,276 KB
testcase_03 AC 70 ms
71,224 KB
testcase_04 AC 71 ms
71,432 KB
testcase_05 AC 70 ms
71,224 KB
testcase_06 AC 72 ms
71,236 KB
testcase_07 AC 71 ms
71,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def yukicoder1476_esreveRdnaesreveR(N):
    t = N // 2
    ans = pow(6,t,998244353)
    return ans

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