結果
問題 | No.2348 Power!! (Easy) |
ユーザー | maksim |
提出日時 | 2023-06-09 22:42:56 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,129 bytes |
コンパイル時間 | 1,787 ms |
コンパイル使用メモリ | 169,152 KB |
実行使用メモリ | 10,148 KB |
最終ジャッジ日時 | 2024-06-10 13:51:57 |
合計ジャッジ時間 | 15,101 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 125 ms
5,248 KB |
testcase_01 | AC | 1,987 ms
5,376 KB |
testcase_02 | AC | 1,938 ms
5,376 KB |
testcase_03 | AC | 2,056 ms
5,376 KB |
testcase_04 | AC | 15 ms
5,376 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long const int p=998244353; int po(int a,int b){ int x = a, res = 1; int h = b; while (h > 0) { if (h & 1) {res *= x;res%=p;} x *= x;x%=p; h >>= 1; } return res; } int inv(int x) {return po(x,p-2);} int32_t main() { ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0); int h=(1<<12)*7*17; int t;cin>>t;while(t--) { int a,n;cin>>a>>n; int res=0; int cur1=1;int cur2=1;int t=1;int u1=1;int u2=po(a,2*h);int u=1; for(int i=0;i<h;++i) { if(i>=n) continue; int o=(n-1-i)/h+1; int l=i*i;int r=i*i+o*i*2*h; int step=2*i*h;if(i) {u*=u2;u%=p;} u1=po(a,o*2*h); if(i==0 || (n-i-1)/h!=(n-i)/h) { t=po(a,o*i*2*h);u1=po(a,o*2*h); } else { t*=u1;t%=p; } if(u!=1) {int inva=inv(u-1);int v=(cur1*t)%p;res+=(v-cur1)*inva;res%=p;} else {res+=cur1*o;res%=p;} cur1*=cur2;cur1%=p;cur1*=cur2;cur1%=p;cur1*=a;cur1%=p;cur2*=a;cur2%=p; } cout<<(res%p+p)%p<<'\n'; } return 0; }