結果

問題 No.2079 aaabbc
ユーザー Nzt3
提出日時 2022-12-22 23:27:21
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 1,741 ms
コンパイル使用メモリ 192,184 KB
最終ジャッジ日時 2025-02-09 18:38:20
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int mod=998244353;
int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  long long ans=1,t=3;
  for(int i=0;i<30;i++){
    if(N>>i&1)ans=ans*t%mod;
    t=t*t%mod;
  }
  cout<<ans<<'\n';
}
0