結果
問題 | No.1552 Simple Dice Game |
ユーザー | 👑 Kazun |
提出日時 | 2021-06-19 02:40:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 657 bytes |
コンパイル時間 | 715 ms |
コンパイル使用メモリ | 64,644 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-22 21:51:15 |
合計ジャッジ時間 | 20,596 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
#include<iostream> using namespace std; using ll=long long; ll pow_mod(ll a, ll n, ll mod){ if (n==0) return 1; else if (n%2) return (a*pow_mod(a,n-1,mod)%mod); else{ ll b=pow_mod(a,n/2,mod); return b*b%mod; } } int main(){ ll N, M; cin >> N >> M; ll Mod=998244353; ll X=pow_mod(M,N+1,Mod)*(M+1)%Mod; ll Y=0; ll a,b; for (int l=1; l<=M; l++){ a=pow_mod(l-1,N,Mod)*l%Mod; b=pow_mod(M-l+1,N,Mod)*(M+l)%Mod; Y+=a+b; } ll Z=(X-Y)%Mod; Z+=Mod; Z%=Mod; ll two_inv=pow_mod(2,Mod-2,Mod); ll k=N*two_inv%Mod; Z*=k; Z%=Mod; cout << Z << endl; }