結果

問題 No.1546 [Cherry 2nd Tune D] 思ったよりも易しくない
ユーザー umezoumezo
提出日時 2021-06-11 22:47:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 823 bytes
コンパイル時間 2,225 ms
コンパイル使用メモリ 202,740 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-05-08 18:56:24
合計ジャッジ時間 8,780 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 38 ms
5,760 KB
testcase_14 AC 109 ms
9,600 KB
testcase_15 AC 50 ms
6,528 KB
testcase_16 AC 49 ms
6,528 KB
testcase_17 AC 37 ms
5,632 KB
testcase_18 AC 67 ms
7,808 KB
testcase_19 AC 63 ms
7,424 KB
testcase_20 AC 76 ms
8,448 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 67 ms
7,680 KB
testcase_23 AC 57 ms
7,040 KB
testcase_24 AC 13 ms
5,376 KB
testcase_25 AC 97 ms
9,984 KB
testcase_26 AC 103 ms
10,368 KB
testcase_27 AC 49 ms
6,528 KB
testcase_28 AC 102 ms
10,240 KB
testcase_29 AC 102 ms
10,240 KB
testcase_30 AC 102 ms
10,240 KB
testcase_31 AC 102 ms
10,240 KB
testcase_32 AC 103 ms
10,240 KB
testcase_33 AC 102 ms
10,240 KB
testcase_34 AC 102 ms
10,112 KB
testcase_35 AC 101 ms
10,240 KB
testcase_36 AC 102 ms
10,368 KB
testcase_37 AC 102 ms
10,240 KB
testcase_38 AC 103 ms
10,112 KB
testcase_39 AC 102 ms
10,240 KB
testcase_40 AC 102 ms
10,240 KB
testcase_41 AC 103 ms
10,240 KB
testcase_42 AC 102 ms
10,240 KB
testcase_43 AC 85 ms
10,240 KB
testcase_44 AC 85 ms
10,240 KB
testcase_45 AC 85 ms
10,112 KB
testcase_46 AC 85 ms
10,240 KB
testcase_47 AC 85 ms
10,240 KB
testcase_48 AC 104 ms
10,240 KB
testcase_49 AC 101 ms
10,112 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;

#include <bits/stdc++.h>
using namespace std;

const int MOD=998244353;
const ll REV=291154603;

ll N=0;
ll f(ll x){
  ll res=1;
  res=res*x%MOD;
  res=res*(x+1)%MOD;
  res=res*(x+2)%MOD;
  res=res*((3*x%MOD-4*N%MOD-3+MOD)%MOD)%MOD;
  res=(-res+MOD)%MOD;
  res=res*REV%MOD;
  return res;
}

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n;
  cin>>n;
  vector<ll> T(n+1),V(n+1);
  rep(i,n) cin>>T[i+1]>>V[i+1];
  
  for(int i=1;i<=n;i++) N=(N+T[i])%MOD;
  
  vector<ll> S(n+1);
  for(int i=1;i<=n;i++) S[i]=(S[i-1]+T[i])%MOD;
  
  ll sum=0;
  for(int i=1;i<=n;i++){
    ll tmp=V[i];
    tmp=tmp*((f(S[i])-f(S[i-1])+MOD)%MOD)%MOD;
    sum=(sum+tmp)%MOD;
  }
  cout<<sum<<endl;
  
  return 0;
}
0