记录编号 |
569868 |
评测结果 |
AAWWWAWWWWWWWWWW |
题目名称 |
[HAOI 2019]骗分过样例 |
最终得分 |
14 |
用户昵称 |
冷月星云 |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
0.907 s |
提交时间 |
2022-03-17 20:21:23 |
内存使用 |
0.00 MiB |
显示代码纯文本
#include<bits/stdc++.h>
#define ll long long
#define ull unsigned long long
using namespace std;
ull qpow(ull a, ull n)
{
if (n == 0)
return 1;
else if (n % 2 == 1)
return qpow(a, n - 1) * a % 998244353;
else
{
ull temp = qpow(a, n / 2) % 998244353;
return temp * temp % 998244353;
}
}
int first(){
ull a , b ,c;
cin >> c;
for(int j = 1;j <= c;j++){
a = 19;
cin >> b ;
a = qpow(19 , b) % 998244353;
a = a % 998244353;
cout << a << endl;
}
return 0;
}
int six(){
int a = 19;
cout << 1 << endl;
for(int i = 1;i < 100000;i++){
cout << a << endl;
a = (int)(a % 998244353 * 19 % 998244353);
}
}
int main(){
freopen( "haoi2019_software.in" , "r" , stdin );
freopen( "haoi2019_software.out" , "w" , stdout );
string lei;
cin >> lei;
if(lei == "1_998244353"){
first();
return 0;
}
if(lei == "1wa_998244353"){
six();
return 0;
}
return 0;
}