結果
問題 |
No.1476 esreveR dna esreveR
|
ユーザー |
|
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 1 TLE * 1 -- * 4 |
ソースコード
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))