結果

問題 No.2586 Yet Another Sugoroku Problem
ユーザー ochiaigawaochiaigawa
提出日時 2023-12-14 12:16:31
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 2,157 ms
コンパイル使用メモリ 203,292 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-27 05:42:23
合計ジャッジ時間 2,843 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
using namespace std;
using mint = atcoder::modint998244353;
int main() {
  cin.tie(0); cout.tie(0);
  ios::sync_with_stdio(false);
  int N;
  cin >> N;
  cout << (mint(2) / (N + 1)).val() << endl;
  return 0;
}
0